Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~6K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for azapovjednik

Difficult. But you may be able to adapt the below. 3 Function and 1 definition TYPE StringArray = ARRAY OF STRING; to test would be 1st bit of code [CODE] procedure TMain.Button1Click(Sender: TObject); var a : StringArray; begin IF E1.TEXt = '' THEN Exit; A := parsestring(e1.text,'-'); E1.text := A[0] …

Member Avatar for House_of_Dexter
0
2K
Member Avatar for quaifp1

Hi, I have usually have 2 monitors available but not always. I use one for displaying maps and the other for the data on a called form. How do 1 get Maps on 1 and Data to appear on the other without dragging the form onto the second monitor. Thanx …

Member Avatar for BitFarmer
1
148
Member Avatar for laki4546

Hi, Personally i would be tempted to use the tag field in tEdit to enumerate each field. With a form and 5 TEdits [Edit1..5] with tags 0..4 An Array A[0..4] of String And a button Put say a,b,c,d,e into your 5 Tedits and hit the button procedure TForm1.Button1Click(Sender: TObject); VAR …

Member Avatar for laki4546
0
1K
Member Avatar for CanYouHandstand

TRY This: [CODE]procedure TMain.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin CASE Key OF Ord('1') : IF Shift = [SSCTRL] THEN Edit1.Text := 'CTRL 1 - Pressed' ELSE IF Shift = [SSAlt] THEN Edit1.Text := 'Alt 1 - Pressed' End; {CASE} end;[/CODE] [QUOTE=cao;1038767]You are attempting to trap the key stroke …

Member Avatar for CanYouHandstand
0
2K
Member Avatar for amazing_grace

Hi, You must put the IO Checking off flag before the assign statement otherwise the exception occurs before you can check it;

Member Avatar for FlamingClaw
0
206
Member Avatar for especta

[QUOTE=especta;1035506]i have problem to allow enter only from 1 to 65535 bicouse example if enter 10000,2000 is ok but enter 99 not. hire 1 example (not working) [CODE]If somthing.Text > '65535 'then ShowMessage(' you enter biger Number from 65535'); Exit;[/CODE] hire 2 example (not working) [CODE]var result : Integer; string1: …

Member Avatar for especta
0
234
Member Avatar for quaifp1

Hi, I want to create a line on a canvas ( similar to a visio connector but not as fancy) which will allow a mouseover event to be trapped ( this would trigger a property sheet to display the atributes of the line - a microwave link in my case …

Member Avatar for quaifp1
0
129
Member Avatar for revski

> Hi, i am trying to get my application to check, which radiobutton is selected, and then perform instructions based on the selection. > > but i cant seem to use a IF and ELSE procedure to do this, can somebody help me out as to what procedure i should …

Member Avatar for revski
0
267

The End.