Search found 116 matches: portion

Return to advanced search

Re: FWH: MySql/MariaDB: RowSet object

... at a time, etc. In what manner FWRowset simplifies this approach is something we shall discuss separately. Another approach can be to read a small portion (eg. first 1000 or first 5000 records) initially and display the browse on the screen within less than a second and then read remaining records ...
by nageswaragunupudi
Wed Oct 05, 2016 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19679

FWH: Parent Child RowSets (MySql/MariaDB)

... read entire child table to start with. CONS: Each resync takes time to read the new data from the server. Method-2: Read the entire (or expected portion of ) child table into a rowset. Filter only the records respecting the relation when oParent:SyncChild() is called. PROS: Syncing the child ...
by nageswaragunupudi
Thu Jul 21, 2016 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Parent Child RowSets (MySql/MariaDB)
Replies: 12
Views: 4253

Windows Toast notifications - second try

This is a portion of code required to create a standard Windows Toast notification. To build it you must use FWH\samples\buildh32.bat toast Here it is failing in hr = GetActivationFactory( hs, &toastStatics ); so you will get ...
by Antonio Linares
Wed Apr 13, 2016 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Toast notifications - second try
Replies: 86
Views: 23531

New function For check email

... { int count = 0; const char *c, *domain; static char *rfc822_specials = "()<>@,;:\\\"[]"; /* first we validate the name portion (name@domain) */ for (c = address; *c; c++) { if (*c == '\"' && (c == address || *(c - 1) == '.' || *(c - 1) == '\"')) { while ...
by HATHAL
Fri Mar 18, 2016 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New function For check email
Replies: 3
Views: 761

Re: DateTime in SQL

... I am not sure the library you are using truncates the value to date only. XBrowse, while browsing ADO recordsets, by default displays date portion only. We need to specify oCol:cDataType := 'T' or oCol:cEditPicture := "@T" to display full date and time.
by nageswaragunupudi
Wed Dec 16, 2015 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime in SQL
Replies: 3
Views: 685

DateTime in SQL

... do a plain Xbrowse on the DataTable, I am still seeing the value in the Table as a Date Only the TTOC / TTOS function only seem to return the Date portion of the field and nothing from the STRING. Is this a "latest version" issue, or is their something more fundamental going on? I have ...
by paulrogers
Wed Dec 16, 2015 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime in SQL
Replies: 3
Views: 685

Re: Report Xbrowse Multiheader

Hi,

Can you share a portion of this xbrowse code i have a similar project ?


regards,
by nnicanor
Fri Sep 11, 2015 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report Xbrowse Multiheader
Replies: 17
Views: 3375

Re: hb_xrealloc can't reallocate memory

... LOCAL var resides in the stack, but just only the 'var' component of it. It's value is stored in the heap, using the Harbour services. The stack portion of oxData stores the handle of that memory chunck. At startup, all the available heap conforms a big unique block of memory. Usually a several ...
by Carlos Mora
Wed Sep 02, 2015 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_xrealloc can't reallocate memory
Replies: 21
Views: 7239

Re: About CheckRes()?

Antonio Linares wrote:Hakan,

You can use SetResDebug( .T. ) and CheckRes() in just a portion of your app

Do you allocate memory in some way in your app ?

Do you manage bitmaps, fonts, etc ?


I dont allocate any memory in my application.
by Horizon
Mon Aug 31, 2015 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About CheckRes()?
Replies: 7
Views: 936

Re: About CheckRes()?

Hakan,

You can use SetResDebug( .T. ) and CheckRes() in just a portion of your app

Do you allocate memory in some way in your app ?

Do you manage bitmaps, fonts, etc ?
by Antonio Linares
Mon Aug 31, 2015 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About CheckRes()?
Replies: 7
Views: 936

Re: How to open wmf files?

... from Otto to generate a thumbnail from any image (running app, etc) on the screen. Basically once the image was shown, he captured the portion of the screen with the image and generated a bitmap from it. Otto could you explain the way you did it ? many thanks
by Antonio Linares
Tue Mar 31, 2015 4:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to open wmf files?
Replies: 14
Views: 4181

Re: Mr Rao, Do you have a sample using xBrowse with ADO?

...  endifreturn nil//----------------------------------------------------------------------------//  The operative portion of the browse, include add/edit dialogs is only 30 lines including blank lines but handles table management completely. In the above sample, ...
by nageswaragunupudi
Sun Mar 01, 2015 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr Rao, Do you have a sample using xBrowse with ADO?
Replies: 7
Views: 1418

Re: New FWH 14.09

Frances, Could you post your rc (the portion for such dialog) here ? thanks DLG_ADDCALLER DIALOGEX 0,0,240,63FONT 9,"Verdana",0,0,0STYLE NOT WS_VISIBLE|WS_CHILDWINDOW|WS_BORDERBEGIN  CONTROL "",4001,"Button",WS_CHILDWINDOW|WS_VISIBLE|BS_GROUPBOX,8,10,224,32,WS_EX_TRANSPARENT  ...
by fraxzi
Mon Oct 27, 2014 12:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 14.09
Replies: 55
Views: 8612

Re: New FWH 14.09

Frances,

Could you post your rc (the portion for such dialog) here ? thanks
by Antonio Linares
Mon Oct 27, 2014 12:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 14.09
Replies: 55
Views: 8612

Re: Binary file to field via SQL

I just re-read your post, I think there might be a problem with the actual sql statement. I'm not sure the insert portion is the correct syntax. cSql := "MERGE entry_trn ON ( ticket_id = '123' ) "+;         "WHEN MATCHED THEN UPDATE SET ( concerns = :bin_data1 ) " ...
by reinaldocrespo
Thu Oct 09, 2014 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Binary file to field via SQL - SOLVED!
Replies: 7
Views: 1780
PreviousNext

Return to advanced search