Search found 28 matches: determining

Return to advanced search

Re: Create help system with F1

... keywords or phrases. Created Date: The date when the help topic was created. This field can be useful for tracking the age of the content and determining if any updates or revisions are necessary. Last Updated Date: The date when the help topic was last updated. This field helps in tracking ...
by Antonio Linares
Tue Jul 11, 2023 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 866

How to capture screen by code

... display numbers // this part is straight forward ii. Once it displayed, pop a dialog box at the edge of the external exe's window // 2 issues. Determining when the external exe appear and positioning my dialog box iii. If user click Ok on the dialog, create a screenshot and email it // what's ...
by hua
Thu Feb 23, 2023 5:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to capture screen by code
Replies: 3
Views: 337

Re: Disable Advantage error message dialogs

... to provide the ability to control error handling without the resulting default message box being displayed. The example code below can be used for determining if an error occurred while attempting to open a table: LOCAL oDB AS DBServer LOCAL dwError AS DWORD LOCAL pacError AS PSZ LOCAL wLen AS ...
by Massimo Linossi
Thu Dec 14, 2017 8:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable Advantage error message dialogs
Replies: 12
Views: 1461

Re: Need sample that display default browser as an icon on butto

... icon from the exe itself I took the approach of preparing in advance the icons of commonly used browser and select which one to use after determining what is current default browser. Anyone knows what is the tried and tested method to include alpha blended images in an rc compiled with ...
by hua
Thu Jun 08, 2017 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need sample that display default browser as an icon on butto
Replies: 1
Views: 498

Re: New FTDN August/Agosto 2016 (FWH 16.08)

... returns if the sql statement is valid or not. This is useful to study the possibility of further optimizing execution of sql statement as well as determining the validity of sql statement without executing. 2) New METHOD IsBinaryField( cTable, cField ) --> lIsBinary
by Antonio Linares
Wed Oct 12, 2016 9:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2016 (FWH 16.08)
Replies: 1
Views: 1962

Problem compiling testtool.prg

... //----------------------------------------------------------------------------// function Main() local aTimerInfo := TimerCount() // Determining how long an application has been running MsgInfo( "Milliseconds since this task started: " + Str( aTimerInfo[ 1 ] ) ) MsgInfo( ...
by Massimo Linossi
Fri Sep 19, 2014 6:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem compiling testtool.prg
Replies: 0
Views: 503

Re: Network Issue

... want gets complicated. Since you can't use syntax similar to filters with scopes, then you have to scope on one field only then filter the rest. Determining which field to use as a scope can be complicated. You could build four indexes, one for each piece of data. Then you have to pick which ...
by James Bott
Mon Jan 13, 2014 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10937

Re: xBrowse FillRect ( follow up )

To All

I am still struggling to figure out a way to paint a rectangle in xBrowse. Two problems:

1) Determining the top, bottom, right and left
2) the syntax to draw the rectangle with transparent text and color

Many Thanks!
Rick Lipkin
by Rick Lipkin
Sat Jul 27, 2013 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse FillRect ( follow up ) -- Rao
Replies: 15
Views: 4389

Re: Assignment = or := ?

Hello Enrico,
Fivewin classes are my reference for good programming style. As I see that for the same assignment in different classes = and := are used I asked which is the right way.
I personally prefer :=. Why context determining which is meant.
Thanks again for your help.
Best regards,
Otto
by Otto
Tue Jan 19, 2010 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Assignment = or := ?
Replies: 8
Views: 1219

Re: Determining if processor/OS is 64bits

Thanks for all the replies.
My first thought was PROCESSOR_ARCHITECTURE but I fear that only tells about the hardware, not the software.
I'll try the other approaches and see how they work and post my results later.

Regards,
by Luis Krause
Tue Jan 20, 2009 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Determining if processor/OS is 64bits
Replies: 4
Views: 720

Re: Determining if processor/OS is 64bits

Louis, you can also check the environment variables PROCESSOR_ARCHITECTURE and PROCESSOR_IDENTIFIER to get those informations // OS 32bit shows x86, 64bit shows AMD64 lIsOs64 := (Upper (GetEnv("PROCESSOR_ARCHITECTURE")) = "AMD64" // 64 bit capeable processor shows EM64T lIsCp...
by StefanHaupt
Fri Jan 16, 2009 9:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Determining if processor/OS is 64bits
Replies: 4
Views: 720

Re: Determining if processor/OS is 64bits

Luis, Another way is to check the size of an integer, though this will just check the application itself, not the OS: #include "FiveWin.ch" function Main() MsgInfo( SizeOfInt() == 8, "Am I 64 ?" ) return nil #pragma BEGINDUMP #include <hbapi.h> HB_FUNC( SIZEOFINT ) ...
by Antonio Linares
Thu Jan 15, 2009 10:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Determining if processor/OS is 64bits
Replies: 4
Views: 720

Determining if processor/OS is 64bits

Hi all: I'm wondering what's the best way to determine if the OS running is 64bit or not. The need is basically to determine if will install the 64 or 32 bit version of ADS 9x in our installer. I wonder if a simple GetEnv( "PROCESSOR_ARCHITECTURE" ) should be enough or is there a WinAPI ca...
by Luis Krause
Thu Jan 15, 2009 9:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Determining if processor/OS is 64bits
Replies: 4
Views: 720

Hi Anser Is your application single user? If not then I don't think that determining what windows your application has open would do the trick. You would need to use flags and / or locks. I would suggest such an approach for a single user scenario also as it ...
by anserkk
Tue Sep 09, 2008 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help : Details of the opened dialogs/windows in application
Replies: 18
Views: 4128
Next

Return to advanced search