Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #25.0K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

7 Posted Topics

Member Avatar for drdaco

It is just to count from 0 to a specified number and then convert all results so obtained into binary strings with enough heading 0s to make them of equal-length. The trouble is you can write fast codes with integer variables but you have to use float variables if the …

Member Avatar for Adak
0
258
Member Avatar for TomRandall

TomRandall, A simple way is to use the OnHint event of the Application global variable. You can easily fulfil your tasks in an event handler. The effect is much better than MouseMove event. A more general way is to build a separate thread to monitor mouse movement. You can manipulate …

Member Avatar for BitFarmer
0
646
Member Avatar for airefrais

airefrais, I think you may try Adobe Audition that can generate 32-bit sine waves and more complicated waves.

Member Avatar for mediastar
0
382
Member Avatar for Member #264455

I think PollH is right. Suppose you have created a TPrinter object named P and B, contained in Form1, is the button you'd like to print , you may call the CopyRect method in this way: P.Canvas.CopyRect(Rect(0, 0, B.Width, B.Height), Form1.Canvas, B.BoundsRect); You have to make the P object ready …

Member Avatar for mediastar
0
91
Member Avatar for anandkrishnantc

A ShellExecute command (in ShellApi module) can make it: ShellExecute(0, 'open', PChar(S), nil, nil, SW_SHOW); S is a string variable containing 'mailto:' as leading characters. This command will open a new-mail window of the default mail processor no matter whether the processor is running.

Member Avatar for mediastar
0
225
Member Avatar for manutd4life

I think a TMaskEdit control in Delphi can easily solve your problem if your program is allowed to run as a standard Windows application.

Member Avatar for mediastar
0
193
Member Avatar for BradenMurphy

I appreciate snake's insight into the unique-instance problem. But I use a simpler method in the project source as follows. ----------------------------------------- [code]var hMutex: THandle; begin hMutex := CreateMutex(nil, True, 'AnyNameYouChoose'); if GetLastError <> Error_Already_Exists then begin Application.Initialize; Application.CreateForm(TMainFm, MainFm); Application.Run; end; ReleaseMutex(hMutex); end.[/code]

Member Avatar for mediastar
0
176

The End.