• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

How to use Dialogs in RSS Pro.

Started by ThomasGrant, Oct 17, 08:44 AM 2010

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ThomasGrant

OpenDialog
link:://:.delphibasics.co.uk/RTL.asp?Name=TOpenDialog

How to use OpenDialog in RSS Pro.

OpenDialog1.Title:='Open Files'; {The Titles of the Dialog Window}

OpenDialog1.InitialDir:='c:\rss-data';
{ InitialDir: The folder you wish the Dialog window to open in}

OpenDialog1.Execute(false); {This Opens the Dialog window}

if OpenDialog1.FileName='' then {If you press cancel, this message will appear}
begin
   ShowMessage('Open file was cancelled');
end;
else if OpenDialog1.FileName<>'' then {If a filenam is selected then show this message}
        ShowMessage('Open file '+OpenDialog1.FileName);
end;
"What we do in life, echoes in eternity"

*Link Removed*  The Roulette Professor. *Link Removed*

ophis

Quote from: ThomasGrant link=topic=1864. msg16382#msg16382 date=1287319483
OpenDialog
hxxp: :. delphibasics. co. uk/RTL. asp?Name=TOpenDialog

How to use OpenDialog in RSS Pro.

OpenDialog1. Title:='Open Files'; {The Titles of the Dialog Window}

OpenDialog1. InitialDir:='c:\rss-data';
{ InitialDir: The folder you wish the Dialog window to open in}

OpenDialog1. Execute(false); {This Opens the Dialog window}

if OpenDialog1. FileName='' then {If you press cancel, this message will appear}
begin
   ShowMessage('Open file was cancelled');
end; <-- no ";" before "else"
else if OpenDialog1. FileName<>'' then {If a filenam is selected then show this message}
        ShowMessage('Open file '+OpenDialog1. FileName);
end;

short version:

with OpenDialog1 do begin
  Title:='Open Files';
  InitialDir:='c:\rss-data';
  Execute;

  if FileName='' then ShowMessage('Open file was cancelled')
  else ShowMessage('Open file '+OpenDialog1. FileName);
end;
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

-