... PACKDATA
DEFBEGIN
name PeadWin
description 'Clipper for Windows library'
exetype Windows 3.1
data preload moveable
code preload moveable nondiscardable
stacksize 8500
heapsize 2048
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable ...
Search found 32 matches: nondiscardable
Searched query: nondiscardable
- Tue Jun 23, 2020 3:52 am
- Forum: FiveWin for CA-Clipper
- Topic: volviendo a 16bits con Fivewin, Clipper y Blinker
- Replies: 1
- Views: 38401
- Thu Jul 06, 2017 1:58 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Final conversion 16 bit to FWH
- Replies: 26
- Views: 6591
Final conversion 16 bit to FWH
... MAVECO'
exetype Windows
code preload moveable discardable
data preload moveable
stacksize 14000
heapsize 12000
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
exetype Windows
code preload moveable discardable
data preload moveable
stacksize 14000
heapsize 12000
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Tue Jun 02, 2015 2:41 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: JPGs en recursos
- Replies: 8
- Views: 2638
Re: JPGs en recursos
... los otros recursos uso un archivo de texto plano. En ese archivo puse esto:
#define RT_RCDATA 10
#define RT_RCDATA2 10
JPG_1 RT_RCDATA NONDISCARDABLE "c:/xbapp/safelink/imagenes/jpg/publi01.jpg"
JPG_2 RT_RCDATA2 NONDISCARDABLE "c:/xbapp/safelink/imagenes/jpg/publi02.jpg"
donde le asigno un ...
#define RT_RCDATA 10
#define RT_RCDATA2 10
JPG_1 RT_RCDATA NONDISCARDABLE "c:/xbapp/safelink/imagenes/jpg/publi01.jpg"
JPG_2 RT_RCDATA2 NONDISCARDABLE "c:/xbapp/safelink/imagenes/jpg/publi02.jpg"
donde le asigno un ...
- Thu Oct 07, 2010 7:12 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: JPGs en recursos
- Replies: 8
- Views: 2638
Re: JPGs en recursos
Willi,
Puedes incluirlos en el fichero RC de esta forma:
#define RT_RCDATA 10
JPG_1 RT_RCDATA NONDISCARDABLE "test.jpg"
De esa forma se puede almacenar lo que queramos en los recursos. Luego podemos "cargarlo" a una cadena así:
if FindResource( GetResources(), "JPG_1", 10 ) cJpg ...
Puedes incluirlos en el fichero RC de esta forma:
#define RT_RCDATA 10
JPG_1 RT_RCDATA NONDISCARDABLE "test.jpg"
De esa forma se puede almacenar lo que queramos en los recursos. Luego podemos "cargarlo" a una cadena así:
if FindResource( GetResources(), "JPG_1", 10 ) cJpg ...
- Fri Nov 06, 2009 6:48 pm
- Forum: FiveWin for CA-Clipper
- Topic: las libreria fivewin
- Replies: 1
- Views: 2748
las libreria fivewin
... exetype Windows 3.1
code moveable discardable preload
data preload moveable
stacksize 10000
heapsize 1024
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
code moveable discardable preload
data preload moveable
stacksize 10000
heapsize 1024
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Sat May 23, 2009 1:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to create a <spec.> Buttonbar 9.04 ( Symbols included )
- Replies: 24
- Views: 7878
Re: How to create a <special> Buttonbar (9.04 / code included)
... in the forum
by toninhofwi » Tue Mar 31, 2009 11:39 pm
Hi Uwe,
Borland Resource Workshop can do it:
#define RT_RCDATA 10
nId RT_RCDATA NONDISCARDABLE "imagem.png"
My question is another: How to load it and have a valid handle, maybe something like:
hBitmap = LoadBitmap( GetResources ...
by toninhofwi » Tue Mar 31, 2009 11:39 pm
Hi Uwe,
Borland Resource Workshop can do it:
#define RT_RCDATA 10
nId RT_RCDATA NONDISCARDABLE "imagem.png"
My question is another: How to load it and have a valid handle, maybe something like:
hBitmap = LoadBitmap( GetResources ...
- Tue Mar 31, 2009 11:39 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: How load png from resource
- Replies: 4
- Views: 1013
Re: How load png from resource
Hi Uwe,
Borland Resource Workshop can do it:
#define RT_RCDATA 10
nId RT_RCDATA NONDISCARDABLE "imagem.png"
My question is another: How to load it and have a valid handle, maybe something like:
hBitmap = LoadBitmap( GetResources(), cResName )
Thanks and best regards,
Toninho.
Borland Resource Workshop can do it:
#define RT_RCDATA 10
nId RT_RCDATA NONDISCARDABLE "imagem.png"
My question is another: How to load it and have a valid handle, maybe something like:
hBitmap = LoadBitmap( GetResources(), cResName )
Thanks and best regards,
Toninho.
- Sat Sep 27, 2008 1:12 am
- Forum: FiveWin para CA-Clipper
- Topic: ARCHIVOS .MEM
- Replies: 5
- Views: 3187
- Wed Sep 24, 2008 5:33 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Necesito ayuda con FWH 8.04, soy nuevo en esto
- Replies: 2
- Views: 956
Necesito ayuda con FWH 8.04, soy nuevo en esto
... exetype Windows 3.1
code preload moveable discardable
data preload moveable
stacksize 10000
heapsize 8500
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
code preload moveable discardable
data preload moveable
stacksize 10000
heapsize 8500
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Fri Sep 19, 2008 6:34 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Saludos y novato y perdido con FWH
- Replies: 1
- Views: 982
Saludos y novato y perdido con FWH
... exetype Windows 3.1
code preload moveable discardable
data preload moveable
stacksize 10000
heapsize 8500
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
code preload moveable discardable
data preload moveable
stacksize 10000
heapsize 8500
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Wed Aug 27, 2008 7:44 am
- Forum: Utilities / Utilidades
- Topic: Boris Pekic - NG's archive
- Replies: 27
- Views: 103895
Clipper Errors
... Windows 3.1
code moveable discardable preload
data preload moveable
stacksize 9500
heapsize 2048
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
code moveable discardable preload
data preload moveable
stacksize 9500
heapsize 2048
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Wed Aug 27, 2008 7:30 am
- Forum: Utilities / Utilidades
- Topic: Boris Pekic - NG's archive
- Replies: 27
- Views: 103895
Advantage DS
... exetype Windows
code moveable discardable
date preload moveable
stacksize 12500
heapsize 2048
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
code moveable discardable
date preload moveable
stacksize 12500
heapsize 2048
segment 'PLANKTON_TEXT' nondiscardable
segment 'EXTEND_TEXT' nondiscardable
segment 'OM_TEXT' nondiscardable
segment 'OSMEM_TEXT' nondiscardable
segment 'SORTOF_TEXT ...
- Sun May 25, 2008 4:44 am
- Forum: FiveWin for CA-Clipper
- Topic: Any problems with FiveWin and the DBFCDX & SIX3 drivers?
- Replies: 6
- Views: 2428
- Sat May 24, 2008 10:04 pm
- Forum: FiveWin for CA-Clipper
- Topic: Problems with FiveWin & SIx driver Ver. 3.0
- Replies: 0
- Views: 938
Problems with FiveWin & SIx driver Ver. 3.0
... EXETYPE Windows 3.1
CODE preload moveable discardable
DATA preload moveable
STACKSIZE 9500
HEAPSIZE 2048
SEGMENT "PLANKTON_TEXT" NONDISCARDABLE
SEGMENT "EXTEND_TEXT" NONDISCARDABLE
SEGMENT "OM_TEXT" NONDISCARDABLE
SEGMENT "OSMEM_TEXT" NONDISCARDABLE
SEGMENT "SORTOF_TEXT ...
CODE preload moveable discardable
DATA preload moveable
STACKSIZE 9500
HEAPSIZE 2048
SEGMENT "PLANKTON_TEXT" NONDISCARDABLE
SEGMENT "EXTEND_TEXT" NONDISCARDABLE
SEGMENT "OM_TEXT" NONDISCARDABLE
SEGMENT "OSMEM_TEXT" NONDISCARDABLE
SEGMENT "SORTOF_TEXT ...
- Wed Apr 30, 2008 7:06 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: PNG en botones
- Replies: 5
- Views: 1399