• 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

Tom's RSS Pro: Tutorial V6 (Advanced)

Started by ThomasGrant, Feb 06, 03:02 PM 2011

Previous topic - Next topic

0 Members and 5 Guests are viewing this topic.

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced)
[attach=1]
Brand new video tutorial series for 2011.

Tom's RSS Pro: Tutorial V6 (Advanced)
"What we do in life, echoes in eternity"

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

ThomasGrant

"What we do in life, echoes in eternity"

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

ThomasGrant

"What we do in life, echoes in eternity"

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

ThomasGrant

Outline...

In this. One of a kind tutorial series.
I hope to go through some advanced ideas and concepts.
Well... advanced...
Advanced for me at least.
LOL...

Going over old ground.
And a few new things.
Like how to work with colors and fonts.

A very detailed tutorial.
Going in depth.

Deeper than anything I have done before.
Lots of videos.
Lots of instructions.
Lots of things to learn and to do.

I will be going into thomasgrant_2.psc
Ohh dear... finally figured much of what I wanted to do with that code.
Works better now. Better than I expected.
Still a few things to tidy up.
But geez. Take a look at the previous videos.

I will also be attempting to do Roulette Bandit.
And applying that to my interface.

The interface is the easy part.

It that dam code that get most people stuck.

Hope to keep you entertained.
Why not subscribe to my youtube site?
link:://:.youtube.com/thomasrgrant

And keep up to date on new video tutorials that I do.
"What we do in life, echoes in eternity"

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

ophis

if you will get stuck just ask. its simillar enough to delphi so i think i may be helpfull.
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

ThomasGrant

Quote from: ophis on Feb 13, 12:44 PM 2011
If you will get stuck just ask. its simillar enough to delphi so I think I may be helpfull.

Where we you two weeks ago?
LOL...

Thank you for your kind offer.

I know that you have your point of view regarding RSS Pro.
And I have tried to code with Delphi. I really have.

However...
Just found it to difficult to get my code to work.
RSS Pro, despite it only being an emulator.
For me... it is very easy to code with.
And to understand.
Plus, I can get my code to work.
It may be the poor mans alternative.
But for me.
It does what I tell it to.
"What we do in life, echoes in eternity"

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

ThomasGrant

"What we do in life, echoes in eternity"

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

ThomasGrant

"What we do in life, echoes in eternity"

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

ThomasGrant

"What we do in life, echoes in eternity"

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

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced) Part 3
YouTube - Broadcast Yourself.

Plus I have all the files here as well.
Download them.
They are for all platforms.

Playtech
Playtech Live
BetVoyager
Real Time Gaming
Microgaming
"What we do in life, echoes in eternity"

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

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced) Part 4 (Unit4, Unit5)
YouTube - Broadcast Yourself.

Explaining Unit4 and Unit5 again.
Going to get back to these and show you how they work in action.
"What we do in life, echoes in eternity"

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

ThomasGrant

Just a quick note.
The download has 2 memos on form2
Memo_Results
and
Memo2

Remove Memo2
Don't know how that got there.
I may have duplicated it somehow.
"What we do in life, echoes in eternity"

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

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced) Part 5 (Dialogs, SaveDialog)
YouTube - Broadcast Yourself.
"What we do in life, echoes in eternity"

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

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced) Part 6 (Dialogs, OpenDialog)
YouTube - Broadcast Yourself.

procedure open_file(Title,FileName);
begin
OpenDialog1.Title:=Title; {The Titles of the Dialog Window}
   OpenDialog1.InitialDir:='C:\Users';
   OpenDialog1.DefaultExt:='.txt';  
   OpenDialog1.FileName:=FileName;
   OpenDialog1.Filter:='Txt files (*.txt)|*.txt';
   OpenDialog1.Execute(false);
   if OpenDialog1.FileName='' then
   begin
       ShowMessage('Open file was cancelled');{If you press cancel, this message will appear}
   end;
end;


procedure save_file(Title,FileName);
begin
 SaveDialog1.Title:=Title; {The Titles of the Dialog Window}
   SaveDialog1.InitialDir:='C:\Users';
   SaveDialog1.DefaultExt:='.txt';  
   SaveDialog1.FileName:=FileName;
   SaveDialog1.Filter:='Txt files (*.txt)|*.txt';
   SaveDialog1.Execute(false);
   if SaveDialog1.FileName='' then
   begin
       ShowMessage('Save file was cancelled');{If you press cancel, this message will appear}
   end;
end;


procedure MainMenu1_LoadSettingsClick(Sender: TObject);
begin              
  open_file('Open my file','My_file.txt');        
end;

procedure MainMenu1_SaveSettingsClick(Sender: TObject);
begin
 save_file('Save My Files','My_file.txt');
end;


This comes in handy later on.
Or anywhere in your script.
Now you can send the Title. The IntialDir, The FileName to these procedures.
And these procedures can now be used anywhere.
Or copied for later projects.
All you now need to do is change the variables that come in.

Example.

We have

save_file('Save My Files','My_file.txt');

Well, you can put in.

save_file('Save my Docment','My_document.txt');

Makes sense?
"What we do in life, echoes in eternity"

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

ThomasGrant

Tom's RSS Pro: Tutorial V6 (Advanced) Part 7 (Dialogs, FontDialog)
YouTube - Broadcast Yourself.

FontDialog1.Execute(false); {Opens the font requester}

Object Name: Font, Font Style, Font Color, Font Size

Memo1.Font:=FontDialog1.Font;

Using the .Font on Objects and the FontDialog1.Font will affect the Object with all the font elements.
If you want to be more specific and just change certain Object elements.
Like the font style or color.
It would look like this.

Memo1.Font.Color:=FontDialog1.Font.Color;

Memo1.Font.Style:=FontDialog1.Font.Style;

Memo1.Font.Size:=FontDialog1.Font.Size;

This process can be used for many of the objects.
"What we do in life, echoes in eternity"

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

-