Search found 86 matches: allocated

Return to advanced search

Re: Converting from PowerBasic ...

Have you allocated enough space for rsStatement? Something like rsStatement = SPACE( ... ) EMG Thanks Enrico , I did some space in buffer . It returned error of Fwh application : Application===========   Path and name: ...
by Rimantas
Wed Sep 07, 2011 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting from PowerBasic ...
Replies: 4
Views: 1344

Re: Converting from PowerBasic ...

Have you allocated enough space for rsStatement? Something like

Code: Select all  Expand view
rsStatement = SPACE( ... )


EMG
by Enrico Maria Giordano
Wed Sep 07, 2011 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting from PowerBasic ...
Replies: 4
Views: 1344

Fonts in 11.03

... With version 11.03, this changed. Now a new font is used, and it clips all of my predefined text. Prompts no longer fit in the button space allocated, and labels for fields ( defined in the .rc file ) are being chopped. I saw no mention in the notes of any change. Reverting back to 10.12 ...
by TimStone
Wed Apr 13, 2011 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fonts in 11.03
Replies: 4
Views: 1082

Re: Problem with aGetFiles()

... ( dwFlags & OFN_ALLOWMULTISELECT ) ? 15384 : 256 ); No changes. Taavi Taavi, In function cGetFile() we use this amount of memory to be allocated: (5128) pFile = ( LPSTR ) _xgrab( ( dwFlags & OFN_ALLOWMULTISELECT ) ? 5128 : 256 ); Please increase it (double or triple) and try it ...
by Taavi
Tue Oct 12, 2010 1:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with aGetFiles()
Replies: 8
Views: 1458

Re: Problem with aGetFiles()

Taavi,

In function cGetFile() we use this amount of memory to be allocated: (5128)

pFile = ( LPSTR ) _xgrab( ( dwFlags & OFN_ALLOWMULTISELECT ) ? 5128 : 256 );

Please increase it (double or triple) and try it again, thanks :-)
by Antonio Linares
Mon Oct 11, 2010 11:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with aGetFiles()
Replies: 8
Views: 1458

Very fine pure C++ GUI interfaces lib !

... SkinStart("UiResourceFile2.urf",0,"",1,0,0); Restore the Windows default appearance SkinStart(0,0,0,0,0,0); Release all the allocated resources by skinning SkinRemove() ; Unskin the special window SkinWindowSet(hWnd,0) ; Skin the window as the special type forcibly SkinWindowSet(hWnd ...
by ShumingWang
Fri Sep 17, 2010 3:57 am
 
Forum: Utilities / Utilidades
Topic: Very fine pure C++ GUI interfaces lib !
Replies: 0
Views: 921

Re: Texto justificado

... many pixels we want to distribute (nAncho-nLong) and how many spaces are in the line (aText[nCont,2]-1). The function look after the pixels are allocated between all spaces (some spaces will be 1 pixel greater than others). SetTextCharacterExtra() adds pixels between characters. In fact, pixels ...
by antolin
Mon Jun 28, 2010 3:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Texto justificado
Replies: 17
Views: 4969

Re: RED Local con ADS

... is done in non-contiguous blocks on a demand basis, so if a huge table has only a few records that pass the filter condition, the actual amount of allocated memory is usually quite small.
by MarioG
Fri Mar 12, 2010 1:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RED Local con ADS
Replies: 10
Views: 3795

Re: Find first free number

... at all. I have a key allocation table with one record per table. That record holds the name of the table (which doesn't change) and the last key allocated (as a numeric value). However rather than use a LOCATE or SEEK using an index to find the appropriate record I use a GOTO ::int_KeyAllocationBucket ...
by xProgrammer
Fri Mar 12, 2010 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Find first free number
Replies: 12
Views: 2485

Re: Find first free number

... except I use a defined int per table rather than a name for my primary key bucket and go to that record of my key allocation table to get the next allocated key. I don't quite understand what you are saying. What do you mean by "use a defined int per table rather than a name for my primary ...
by James Bott
Fri Mar 12, 2010 2:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Find first free number
Replies: 12
Views: 2485

Re: Find first free number

... except I use a defined int per table rather than a name for my primary key bucket and go to that record of my key allocation table to get the next allocated key. Arguably less of a bottleneck in a really high data throughput scenario but for most purposes it probably makes no difference. Like you ...
by xProgrammer
Fri Mar 12, 2010 12:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Find first free number
Replies: 12
Views: 2485

Memory error with FiveWin + xHarbour.com

Ola Antonio, This code generate a memory error when the memory allocated is close to 140 mega if I compile it with FWH + xHarbour.com If i compile the same code with FWH + xHarbour.org the error is generated when the memory allocated is close to 2 giga ...
by Patrizio
Tue Jan 19, 2010 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memory error with FiveWin + xHarbour.com
Replies: 14
Views: 5873

Re: RibbonBar de FWH con apariencia Windows 7

Error This file is neither allocated to a Premium Account, or a Collector's Account, and can therefore only be downloaded 10 times. This limit is reached. To download this file, the uploader either needs to transfer this file into his/her ...
by joseluisysturiz
Sat Dec 12, 2009 3:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: RibbonBar de FWH con apariencia Windows 7
Replies: 63
Views: 11529

Re: Realizar un instructivo o ayuda

mmm disculpas... no funciona: http://rapidshare.com/files/255896628/T ... a.rar.html Error This file is neither allocated to a Premium Account, or a Collector's Account, and can therefore only be downloaded 10 times. This limit is reached. To download this file, the uploader either ...
by dobfivewin
Thu Jul 16, 2009 10:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Realizar un instructivo o ayuda
Replies: 9
Views: 1447

FileStr()

... to 160K) whereas under Windows (XP) it seemed to have a limit (from memory about 30K). I programmed around this using FOpen(), FRead() and a pre-allocated buffer, but I was wondering if anyone else had struck this problem? Regards Doug
by xProgrammer
Wed Apr 01, 2009 11:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FileStr()
Replies: 5
Views: 739
PreviousNext

Return to advanced search