Search found 49 matches: similarly

Return to advanced search

Re: Strange characters going from FWH to Outlook FWH 13.10

Dear Michel,
I haven't conducted any direct speed measurements, but I've never noticed it being slow.
I think the code page must solve it similarly.
Best regards,
Otto
by Otto
Mon Feb 19, 2024 11:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3708

Re: DBF . Commit

... existiert nicht."}  I think we need an extended function for these: To retrieve file size, date, and time information in C++ similarly to how Windows Explorer does, you can use the Windows API. The GetFileAttributesEx function can be used to obtain extended file attributes, ...
by Otto
Sun Oct 22, 2023 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2323

Re: XBROWSE Column Question

... to fit the GridWidth :nStretchCol := STRETCHCOL_WIDEST Further stretches the widest character column to fit the GridWidth. :nStretchCol := nCol Similarly, stretches the column whose nCreationOrder is the same as nCol. how can i SET Cursor into 5th Column (also when outside Screen) oBrw:nSelCol ...
by nageswaragunupudi
Thu May 04, 2023 10:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

While using the function, please use "D" not "d" for date fields. Similarly use "T" for datetime / timestamp fields. Width 8 may be specified in the array for compatibility with DBF, but this value is ignored. Please note that dates and ...
by nageswaragunupudi
Wed Sep 29, 2021 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28386

Re: edit a record with tdatabase - I am in trouble

Yes.
FWH has a built-in library for MySQL.
Can connect to MySql, open tables, and use them just like TDatabase.

Full documentation:
viewtopic.php?f=3&t=33286

If you are already using ADO for MySQL, you can use TRecSet class, which works similarly to TDatabase.
by nageswaragunupudi
Mon Jun 21, 2021 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a record with tdatabase - I am in trouble
Replies: 8
Views: 1294

backslash

... doesn't work is because the backslash escapes the " (which will print a literal quote), and thus your string is not properly terminated. Similarly, "aa ///\\\" won't work, because the last backslash again escapes the quote. Just remember, for each backslash you want to output, ...
by Otto
Tue Apr 13, 2021 10:06 am
 
Forum: mod_harbour
Topic: backslash
Replies: 1
Views: 287

Re: tDatabase- AdsSetAof()

... works using the same methods as a DBF database class. You can then plug in either class to a program without making any changes to program code. Similarly you could have a CSV class, an XML, or an SQL class, that also use the same methods. What you don't want to do is to try to combine them all ...
by James Bott
Thu Nov 16, 2017 9:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tDatabase- AdsSetAof()-RESUELTO
Replies: 2
Views: 688

Re: Is there any TXImage method for resizing JPG images

... you can use oImg:Resize( nWidth ). The method calculates the height retaining the aspect ratio, Note: oImg:Resize( nil, nHeight ) also should work similarly but there is a bug in the method. As far as the current situation the problem solved by this code, Thank you
by sanilpmc
Mon Mar 07, 2016 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is there any TXImage method for resizing JPG images
Replies: 4
Views: 755

Re: Is there any TXImage method for resizing JPG images

... you can use oImg:Resize( nWidth ). The method calculates the height retaining the aspect ratio, Note: oImg:Resize( nil, nHeight ) also should work similarly but there is a bug in the method.
by nageswaragunupudi
Mon Mar 07, 2016 5:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is there any TXImage method for resizing JPG images
Replies: 4
Views: 755

Re: multi-threaded under xHarbour

Hm.. similarly, but does not work. I will think

Enrico, thank for your help !
by Natter
Fri Feb 26, 2016 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: multi-threaded under xHarbour
Replies: 9
Views: 1574

Re: URLDownloadToFile

Mr.Enrico,

Similarly, Can you please guide me how to upload a file to a website.

Thanks,

-Ramesh Babu
by RAMESHBABU
Wed Nov 04, 2015 1:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: URLDownloadToFile
Replies: 16
Views: 4027

Re: DBF to SQL converter program

... for DBF or SQL table. Incidentally if the program already uses TData(base) to deal with the DBF tables there is a TRecSet class which behaves very similarly. Actually we created TRecSet for easy migration from TDatabase. This also enables same code to deal with either DBF or SQL databases.
by nageswaragunupudi
Tue Aug 25, 2015 5:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 17968

Re: Slow RDD experiences

... database). Hmm, I hope that wasn't too confusing. James Surely it could work, I think it is more practical to schedule a weekly database's pack similarly to how we do on SQL Server.
by Patrizio
Wed Jun 04, 2014 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7589

Re: Any other encryption system besides Blowfish?

... If you want to view an encrypted free table using the Advantage Data Architect, you will be prompted for the password when you open the table. Similarly, before an encrypted table can be accessed from a client application, that application must submit the password. How you submit a table's ...
by reinaldocrespo
Sat Dec 07, 2013 9:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Any other encryption system besides Blowfish?
Replies: 6
Views: 2021

ADO: Update(), AddNew(), GetRows() - Simplified Usage

... have the names of the fields and values ( read and edited ) in arrays like aCols and aVals, we can write oRs:Update( aCols, aVals )  Similarly the familiar coding for AddNew() is: oRs:AddNew()oRs:Fields( "First" ):Value := cFirstoRs:Fields( "Age" ...
by nageswaragunupudi
Wed Jul 31, 2013 12:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO: Update(), AddNew(), GetRows() - Simplified Usage
Replies: 0
Views: 621
Next

Return to advanced search