Search found 19 matches: traditionally

Return to advanced search

Re: Transaction security with DBF

... them, to confirm that they were performed successfully. If any of those operations fails, then you "undo" what you have done. That is traditionally known as a "rollback". SQL engines provide such capability but using DBFs we have to do it ourselves, but as you see, it is ...
by Antonio Linares
Wed Aug 31, 2022 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transaction security with DBF
Replies: 9
Views: 749

Re: TPM

... Windows 11 wants to see TPM 2.0, however the Reg Hacks I just mentioned will allow TPM 1.2 to upgrade to Windows 11. With all that said .. TPM has traditionally been targeted at the Corporate Market specifically to facilitate Bitlocker HD encryption .. Otherwise to me, TPM is basically worthless ...
by Rick Lipkin
Thu Oct 28, 2021 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TPM
Replies: 6
Views: 681

Re: Can you use Windows 11 on your PC ?

... Shell ) http://img4.imagetitan.com/img4/small/24/24_openshell.jpg Which ( for me ) is much easier to use and to find things Traditionally like the Control Panel, Printers ... etc. https://open-shell.github.io/Open-Shell-Menu/ The small box in Windows 10 ( open settings ) ...
by Rick Lipkin
Sat Oct 16, 2021 5:26 pm
 
Forum: Utilities / Utilidades
Topic: Can you use Windows 11 on your PC ?
Replies: 13
Views: 2438

Re: TDatabase Class

James I have been able to use the sample dbf01.prg ... I have created my table traditionally and my index traditionally .. this so far works DO WHILE .T.   CUSTDBF := "TEMP"+(SUBSTR(TIME(),7,2)+SUBSTR(TIME(),4,2))//+".DBF"  ...
by Rick Lipkin
Wed May 19, 2021 3:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2120

Re: Start with ModHarbour

... project started as an Apache official extension to support PRGs and HRBs files. Official Apache extensions are named mod_...(name of the language) traditionally. Thats why we choosed mod_harbour ;-)
by Antonio Linares
Thu May 28, 2020 10:18 am
 
Forum: mod_harbour
Topic: Start with ModHarbour
Replies: 11
Views: 2068

Re: Richedit on a dialog

There is no a @ ..., ... BUTTONBAR as traditionally the buttonbar is placed at top, left, bottom, right This is an example to do what Silvio wants: #include "FiveWin.ch"function Main()   local oDlg, oBar   DEFINE ...
by Antonio Linares
Mon Apr 18, 2016 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit on a dialog
Replies: 17
Views: 8935

Re: Empezando con ADO

... management between those applications as well as ( most any ) Sql RDMS's through their respective OLE Db providers. One nice thing Microsoft has traditionally done is include their MS Jet and SQLOLE db providers in every Windows operating system from XP up to and including Windows 8, meaning ...
by Rick Lipkin
Fri Sep 20, 2013 12:59 pm
 
Forum: Off Topic / Otros temas
Topic: Empezando con ADO
Replies: 48
Views: 17967

Re: HB_FUNCPTR(<x>) function in Harbour?

Hakan,

Traditionally since Clipper you can do:

? Type( "FunctionName()" ) != "UE"

http://www.fivetechsoft.com/harbour-docs/harbour-reference-guide.htm#Type
by Antonio Linares
Thu Jun 27, 2013 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HB_FUNCPTR(<x>) function in Harbour?
Replies: 1
Views: 476

Re: SetKey with ALT key doesn't work

... In which way have you been using it with FWH ? I mean, whats the desired effect that you expect using it ? To stop the user from pressing Alt+C ? Traditionally Alt+C has been a console feature to stop a running process, thats why I can't see what meaning it has under Windows. I appreciate your ...
by Antonio Linares
Thu Jan 19, 2012 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetKey with ALT key doesn't work
Replies: 30
Views: 5259

Re: Codejock Calendar Samples?

... of the work, assistance, and even the friendships that come about here. I use FW because I believe in it, and it allows me to do things I can't traditionally do otherwise. With that as a basis, I believe that sometimes the things we want will take a long time. I used the xBrowse control as an ...
by TimStone
Wed Jan 26, 2011 11:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock Calendar Samples?
Replies: 116
Views: 46616

Re: UE Studio & xHarbour Builder

Tim, Frank, IMO these are pros and cons for each compiler: Borland: Pros: Used since the very beginning of the Harbour and xHarbour projects. Traditionally quite friendly. Free. Cons: It is not available for 64 bits, neither Windows Mobile, neither Linux and OSX. Microsoft C: Pros: Available ...
by Antonio Linares
Wed Jul 14, 2010 6:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UE Studio & xHarbour Builder
Replies: 22
Views: 5999

Re: New controls for FWH

... a non Harbour based data base manager accessed through a query language (probably SQL). Regardless some of the data base navigation logic that was traditionally handled on the client has to be handled on the server (minimising network traffic) and so in most cases will require a shift in your programming ...
by xProgrammer
Tue Jun 15, 2010 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New controls for FWH
Replies: 81
Views: 26897

Re: Cretar DLL

... from the Harbour docs: Windows 32-bit DLLs with Harbour code ===================================== Programs created with Clipper or Harbour are traditionally a monolithic EXE containing all executable code. This includes the Virtual Machine (VM) and the RunTime Library (RTL) as well as your ...
by Antonio Linares
Mon Mar 23, 2009 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cretar DLL
Replies: 3
Views: 1139

Re: create a pcode dll

... 00:32:44Z brianhays $ */ Windows 32-bit DLLs with Harbour code ===================================== Programs created with Clipper or Harbour are traditionally a monolithic EXE containing all executable code. This includes the Virtual Machine (VM) and the RunTime Library (RTL) as well as your ...
by Antonio Linares
Wed Jan 07, 2009 12:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a pcode dll
Replies: 25
Views: 5906

... the program (probably in FWH code) winmain() is being called and the main window object is expected to be returned, not nil as yours is returning. Traditionally, we use function Main() as the starting program function. Try changing your winMain() to Main(). Regards, James
by James Bott
Thu Dec 11, 2008 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW 2.4 to compile with FWH & VC98
Replies: 6
Views: 1204
Next

Return to advanced search