Search found 33 matches: mentions

Return to advanced search

Re: Help splitting up a character address string

... the organization and manageability of the code​​​​. Practical Example and Training: Another post on the FiveTech Software tech support forums mentions an offer to demonstrate how to create mod harbour programs using Harbourino in a Skype session. This implies that there might be training or ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: use Result of SQL Query like "ADODB.Recordset"

As Rao mentions ODBC is a thing of the past .. specifically, lets say I have a corporate SQL application that needs to run on 3000 machines .. that means that (someone ) has to physically go to each of those machines and make ...
by Rick Lipkin
Fri Jun 30, 2023 1:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: use Result of SQL Query like "ADODB.Recordset"
Replies: 4
Views: 348

Re: TPM

Carlos As Antonio mentions .. TPM is a special memory chip that stores certain security information .. specifically a Bitlocker Encryption key. Historically, most Computers and laptops targeted for the consumer market did not come ...
by Rick Lipkin
Thu Oct 28, 2021 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TPM
Replies: 6
Views: 671

Re: PDF generado desde programa en FiveWin

As Rao mentions .. this works for me

Code: Select all  Expand view

PRINT oPrn FILE "filename.pdf"
PAGE
// your print statements to print
ENDPAGE
ENDPRINT
 


Rick Lipkin
by Rick Lipkin
Thu Feb 04, 2021 2:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PDF generado desde programa en FiveWin
Replies: 21
Views: 5991

Re: Which C compiler and which Harbour should be used for FW?

Huh. Xmate is still around? I remember it from way back. Microsoft visual Studio is a good IDE as Antonio mentions .. however, you can just download the MSVC c++ compiler from http://whosaway.com/ and you can use BuildHM.bat or BuildXM.bat in the fivewin\samples folder. For ...
by FWExplorer
Tue Jun 23, 2020 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which C compiler and which Harbour should be used for FW?
Replies: 27
Views: 3574

Re: Which C compiler and which Harbour should be used for FW?

Microsoft visual Studio is a good IDE as Antonio mentions .. however, you can just download the MSVC c++ compiler from http://whosaway.com/ and you can use BuildHM.bat or BuildXM.bat in the fivewin\samples folder. For a new FW user .. I would look ...
by Rick Lipkin
Mon Jun 22, 2020 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which C compiler and which Harbour should be used for FW?
Replies: 27
Views: 3574

Re: clarification respect a recordset

As Rao mentions .. many of the methods he has created handy wrappers .. to dig a bit deeper .. have a look and this fivewin wiki

https://wiki.fivetechsoft.com/doku.php? ... ted_stuffs

Rick Lipkin
by Rick Lipkin
Sat Aug 31, 2019 10:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clarification respect a recordset
Replies: 14
Views: 3304

Re: To James Bott - Error Using TData

... ID and display it on the screen, then if the user cancels it, the ID is abandoned because it is never saved. These are the missing ID's Silvio mentions. This is the only solution I could come up with to met his requirement. Nages came up with the idea of keeping track of the missing ID's and ...
by Silvio.Falconi
Wed May 29, 2019 1:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5125

Re: To James Bott - Error Using TData

... ID and display it on the screen, then if the user cancels it, the ID is abandoned because it is never saved. These are the missing ID's Silvio mentions. This is the only solution I could come up with to met his requirement. Nages came up with the idea of keeping track of the missing ID's and ...
by James Bott
Wed May 29, 2019 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5125

Re: How do you handle User Access on your FW App

... fivewin functionxLOGIN := SUBSTR(xLOGIN,1,15)  Take the results of xLogin and search your user table .. if you find a match .. like Marc mentions .. grant roles to that user based on your logic .. the only time I force a login is if the search for xLogin is not found ... http://i66.tinypic.com/2hq9f6q.jpg ...
by Rick Lipkin
Sat Aug 18, 2018 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do you handle User Access on your FW App
Replies: 5
Views: 968

Re: Latest FWH upgrade, performance issues, larger EXE

Darrell As Cristobol mentions .. MakeTotals on large databases take quite a while to render ... if this is the case .. I use some logic like this: If(oRsWork:RecordCount() <= 1000,oLbx:MakeTotals(),  Also, you ...
by Rick Lipkin
Wed Jul 11, 2018 1:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Latest FWH upgrade, performance issues, larger EXE
Replies: 27
Views: 4990

Re: Antonio: Differences between BORLAND and VCC

... having to pollute my machine ( or set up a special Virtual Machine ) and NO NEED for Visual Studio ... NOW, I can make a comparison ( as enrico mentions ) on speed of execution, reliability, new MSVC libs ( perhaps with better security ) .. and head to head, so far I still prefer BCC to MSVC ...
by Rick Lipkin
Thu May 31, 2018 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Differences between BORLAND and VCC
Replies: 32
Views: 6403

Re: Google Cloud Platform

... to be able to globally access data from anywhere at any time from any device .. and at this point in time we have the opportunity ( as antonio mentions ) to leverage the Cloud API's to make money .. however, I am having serious concerns over the use of cyber terrorism as a weapon to bring down ...
by Rick Lipkin
Tue May 16, 2017 3:08 pm
 
Forum: Off Topic / Otros temas
Topic: Google Cloud Platform
Replies: 8
Views: 4088

Re: Password protected access to menu. Advice ?

... as you saw earlier .. If there is no match .. I force a manual login. You could also assign the value of WNetGetUser() to an object like Enrico mentions : TUser():name:= WNetGetUser() Basically I am leveraging SSO ( single sign on ) with WNetGetUser() ... a valuable tool and selling point to ...
by Rick Lipkin
Fri May 12, 2017 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Password protected access to menu. Advice ?
Replies: 25
Views: 3511

Re: Password protected access to menu. Advice ?

...  // Do somethingElse   oBtn:Hide()      Return(.f.)Endif  You can get creative as Cristabol mentions .. build your buttons when xMgr = "Y" and so on... Hope that helped Rick Lipkin
by Rick Lipkin
Mon May 08, 2017 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Password protected access to menu. Advice ?
Replies: 25
Views: 3511
Next

Return to advanced search