Search found 53 matches: truncated

Return to advanced search

Re: records disappear

No. Even at very low level a sequential file (a DBF is a sequential file) can only be truncated (ie. deleted from a point to the end). To delete an inner part of it the only way is to copy it to another file.

EMG
by Enrico Maria Giordano
Thu Jan 24, 2013 10:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records disappear [solved]
Replies: 41
Views: 6672

Re: How to: xBrowse Column Span

... the width of each column will be as: 6, 10, 40, 14 Now the real problem: In the first sub-array, the data: 'Agent: J.....' will be displayed truncated as per the coumn width!! I want that when the next element data in this sub-array is empty, then the first element should be OVERFLOWED / ...
by compaqt
Thu Dec 06, 2012 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to: xBrowse Column Span
Replies: 6
Views: 1118

Re: Paste in a GET MEMO

... Please: 1) run this little sample program 2) select all text in filetocopy.txt files open by notepad 3) copy 4) paste into oGet MEMO GET 5) I find truncated ad 30000 character Many thanks Again Marco #include "fivewin.ch"#define crlf CHR(13) + CHR(10)FUNCTION MAIN()LOCAL ...
by MarcoBoschi
Tue Aug 28, 2012 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Paste in a GET MEMO
Replies: 14
Views: 1940

Re: OT: XBrowse-MySql-TMysql

Willi. Inserta las filas pero sin No.en columna LIN (solo 0), ya que da un msg que dice: data truncated for column lin. Este mismo msg me da con el codigo de Raymundo. Saludos. oServer:Query("CREATE TABLE IF NOT EXISTS gopmult(" +;           "idgopmult ...
by FranciscoA
Wed Mar 14, 2012 12:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: OT: XBrowse-MySql-TMysql
Replies: 28
Views: 8157

Re: GET COPY/PASTE and crlf

Marco, The first problem is that the field length for the second field wasn't long enough so the data was getting truncated and it appeared that the CRLF was causing it. Try this: #include "fivewin.ch"FUNCTION main()   local oDlg   local oGet1  , cGet1  := "Marco ...
by James Bott
Wed Nov 02, 2011 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET COPY/PASTE and crlf
Replies: 18
Views: 2289

Bug in labels

In the following sample the last character of the label is truncated: #include "Fivewin.ch"FUNCTION MAIN()    LOCAL oDlg    DEFINE DIALOG oDlg;           TRANSPARENT    @ 1, ...
by Enrico Maria Giordano
Tue Mar 29, 2011 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in labels
Replies: 6
Views: 1730

Re: Strange Error with xbrowse-restorestate

As Gilbert discovered, some cState values are too large to be retrieved from an INI file, thus they are truncated. Gilbert has not yet been able to compile a revised C program to correct the problem. But, it will happen as soon as we can get some guidance from a C programmer. ...
by Enrico Maria Giordano
Fri Nov 05, 2010 8:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange Error with xbrowse-restorestate
Replies: 44
Views: 9640

Re: Strange Error with xbrowse-restorestate

Frank,

As Gilbert discovered, some cState values are too large to be retrieved from an INI file, thus they are truncated. Gilbert has not yet been able to compile a revised C program to correct the problem. But, it will happen as soon as we can get some guidance from a C programmer.

Regards,
James
by James Bott
Thu Nov 04, 2010 7:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange Error with xbrowse-restorestate
Replies: 44
Views: 9640

uestudio config file

... is set Can you help ? At the same time, please change the following UseDosNames = 1 to UseDosNames = 0 , this will allow long exe names not to be truncated Richard
by Richard Chidiak
Tue Feb 16, 2010 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: uestudio config file
Replies: 3
Views: 492

UESTUDIO long project name (OT)

Hello I have a project named with 12 characters When i generate , the output is truncated the "dos" way back to 8 characters I have searched the different parameters without successs so far, Does anyone have a long file name project or know what to change ...
by Richard Chidiak
Tue Mar 17, 2009 6:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UESTUDIO long project name (OT)
Replies: 3
Views: 478

Still trouble Transparent say in dialogs

... Say strings are not correcty drawn when transparent clause is used on dialogs. this is an old problem In the sample below, the say string is truncated with the transparent and adjust , it should be on 2 lines if we remove all reference to transparent can tou please check with and without ...
by Richard Chidiak
Fri Feb 06, 2009 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Still trouble Transparent say in dialogs
Replies: 6
Views: 1035

My guess is that there is probably a 32-bit parameter somewhere in the mix that indicates the size of the text buffer to be copied to the Clipboard, but the parameter is being truncated to 16-bits at some point by some old 16-bit code.
by PatrickWeisser
Wed Dec 10, 2008 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Clipboard size
Replies: 15
Views: 2967

... widths on the basis of the data in the first row of the array. In case the data in the first row are smaller in width, values in the next rows are truncated. In case of RDD and RecSets this problem does not arise "normally" if we specify the column name. So when we browse arrays it becomes necessary ...
by nageswaragunupudi
Thu Sep 11, 2008 2:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCol:bStrData with oBrw filled by array?
Replies: 10
Views: 2029

... that cannot be displayed in its entirety. The tooltip overlays the partially-displayed text and provides the remainder of the text that had been truncated. Windows uses them in treeviews and some other controls. Now we can use them too where we may need them or want them to be shown. Please notice ...
by Antonio Linares
Tue Aug 26, 2008 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: In place tooltips!
Replies: 28
Views: 5433

xBrowse & Column Widths

... other data lines to wrap and they are not visible unless the user manually widens the column. For a normal one dataline browse the data is simply truncated. Is there any way to get the multi dataline browse to behave the same way? Or are there any other suggestions? Using FWH 8.01 Thanks, Randal ...
by Randal
Mon Apr 07, 2008 8:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse & Column Widths
Replies: 0
Views: 424
PreviousNext

Return to advanced search