Search found 535 matches: whatever

Return to advanced search

Re: oBrowse:bSeek and TAB

When XBrowse gets focus by whatever way, browse is refreshed and no seek is executed.
Seek is activated only by a kay-stroke and not in any other way.
by nageswaragunupudi
Sat Aug 06, 2022 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrowse:bSeek and TAB
Replies: 3
Views: 327

Re: Copy structure or create new file dbf

... state (current index and the top and bottom scopes and the current recordNo()). set the index and scopes you need to use. Do a gotop(). Do whatever... Then at the end of the routine, restore the database's state (the old index and recno() and the old scopes (if they exist). Another option ...
by James Bott
Thu Jun 09, 2022 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy structure or create new file dbf
Replies: 8
Views: 618

Re: IE

... http://fivetechsupport.com/forums/viewtopic.php?p=248148&sid=de65bf49536f575693b46c9b8767215d#p248148 You can use Borland or MSVC to build it. Whatever you prefer
by Antonio Linares
Wed May 25, 2022 11:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1721

Re: Ue Studio New Licence Modell

Dear Dutch, You just have to open a terminal from vscode, usually I do ctrl+ñ and then you run your make, hbmk2, buildh.bat. whatever you prefer. And you can access Windows WSL2 too from it, edit remote code, direct access to github, a Harbour integrated debugger, and more and more... ...
by Antonio Linares
Tue May 24, 2022 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ue Studio New Licence Modell
Replies: 20
Views: 1240

Re: Problem with SQL Native

... FEB TO 04 FEB"   oRs:Close()   oCn:Close()return nil  You can even modify the program and test whatever you like. This is the structure of the table: CREATE TABLE `test_timestamp` (  `id` int(11) NOT NULL AUTO_INCREMENT,  ...
by nageswaragunupudi
Mon Feb 07, 2022 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with SQL Native
Replies: 28
Views: 1678

Re: How do I know the field name in xbrowse:column

... we want to deal with the 'Quantity' column, which is the 3rd column at the time of creation, we can find the column object in the following ways, whatever be the position at runtime and whether hidden or not: oCol := oBrw:oCol( 3 ) --> Quantity column object, which is the 3rd column ...
by nageswaragunupudi
Tue Feb 01, 2022 5:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2278

How to test a POST from cmd

echo "hello world" | ./modharbour test.prg

whatever is written there ("hello world") becomes the AP_Body() from modharbour
by Antonio Linares
Tue Jan 04, 2022 1:02 pm
 
Forum: mod_harbour
Topic: How to test a POST from cmd
Replies: 2
Views: 695

Re: say border RESOLVED

... Gracias. Very good Silvio. SSAY.PRG is wonderful. Then, when you have time, check out DSAY.PRG, I use it a lot, it's just excellent. You can do whatever you want with either of the two classes. thanks. Regards, saludos. I corrected some bugs and add also the color for the line init clr_hGray ...
by Silvio.Falconi
Fri Nov 19, 2021 12:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: say border RESOLVED
Replies: 32
Views: 2187

Re: say border RESOLVED

... Gracias. Very good Silvio. SSAY.PRG is wonderful. Then, when you have time, check out DSAY.PRG, I use it a lot, it's just excellent. You can do whatever you want with either of the two classes. thanks. Regards, saludos.
by karinha
Thu Nov 18, 2021 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: say border RESOLVED
Replies: 32
Views: 2187

Re: Opinions wanted: Browse Refresh Issue

... is filled with the 123 data. If I then click on any row, the data in all the browse rows/fields refreshes properly. It should not happen. But for whatever it is worth, I will again test the class intensively. Is it working perfectly on your computer? May I know your FWH version? Are you browsing ...
by nageswaragunupudi
Wed Nov 03, 2021 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Opinions wanted: Browse Refresh Issue
Replies: 4
Views: 482

Re: Size of the window

... nHeight. It is fixed at 20 pixels. nTop:= nTop + if(oWnd:oMenu!=nil,20,0) I have never used it. You will still have to convert from pixels to whatever unit you wish.
by James Bott
Wed Oct 06, 2021 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Size of the window
Replies: 4
Views: 665

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

... are internally stored as numbers and we are not at all concerned with that. Date formats are NOT stored in the database. You may use whatever date format you like for "display" in your application. If you write your own sql statements for INSERT/UPDATE then use the format ...
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: 28563

Re: 1-to-many loke Foxpro

... would be asking is what are you trying to accomplish with this? It seems it would be much easier and more efficient to write a program to provide whatever answer the client needs (without storing hundreds of thousands of records, of mostly redundant data). Looking at hundreds of thousands of rows ...
by Marc Vanzegbroeck
Fri Sep 17, 2021 6:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1-to-many like Foxpro
Replies: 14
Views: 1228

Re: 1-to-many loke Foxpro

... would be asking is what are you trying to accomplish with this? It seems it would be much easier and more efficient to write a program to provide whatever answer the client needs (without storing hundreds of thousands of records, of mostly redundant data). Looking at hundreds of thousands of rows ...
by James Bott
Thu Sep 16, 2021 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1-to-many like Foxpro
Replies: 14
Views: 1228

Re: Google Analytics and FWH

But also the mod harbour functions give you much information about your users. And you can insert eventhandlers into your page where you can log whatever you want.    ? "AP_UserIP() --> cUserIP   returns the IP, as string, of the client"    ? AP_UserIP() ...
by Otto
Tue Sep 07, 2021 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Analytics and FWH
Replies: 13
Views: 1734
PreviousNext

Return to advanced search