Search found 59 matches

by olllllliii
Wed Jul 11, 2012 5:47 pm
Forum: Technical / Scripting
Topic: How do i read System Memory Areas
Replies: 2
Views: 3237

How do i read System Memory Areas

Hello i want to read memory areas and give them to a variablé. On XP i had the command debug ...started that and entered the memory area i want to know ...like -D C000:0000 for graphics or 0000:0040 for BIOS .. now i am working with windows 7 (64 bit ) and need some information about the bios insta...
by olllllliii
Tue Jan 31, 2012 4:36 pm
Forum: Technical / Scripting
Topic: Small Crypt Demonstration for Files & Text
Replies: 0
Views: 5658

Small Crypt Demonstration for Files & Text

A small Program that demonstrates crypt :-) Have fun Let>APP_TITLE={"Crypt Demonstration"} RegistryReadKey>HKEY_LOCAL_MACHINE,Software\Microsoft\Windows\CurrentVersion,ProgramFilesDir,strProgDir Let>DESK=DESKTOP_DIR Let>PROGDIR=strProgDir Let>MSG_STAYONTOP=1 Let>MSG_CENTERED=1 Let>MSG_WIDTH=500 Let>...
by olllllliii
Thu Jan 26, 2012 2:44 pm
Forum: Technical / Scripting
Topic: How can i make a right click event for popupmenu command
Replies: 2
Views: 3956

Thank you very much :-)

That works perfect for my needs :-)
by olllllliii
Wed Jan 25, 2012 5:16 pm
Forum: Technical / Scripting
Topic: How can i make a right click event for popupmenu command
Replies: 2
Views: 3956

How can i make a right click event for popupmenu command

Do someone know how i can make a rightmouseclickevent for the popupmenue command ? It would be fine if i can implement that to some scripte ...to select an element of a list , rightclick that and then say what to do with that. OnEvent> ( rightclick ) do SRT ( rightclick ) SRT>rightclick Let>Items=De...
by olllllliii
Sat Feb 05, 2011 10:41 am
Forum: Beginners
Topic: Help needed with Webrecorder - Beginner
Replies: 1
Views: 4558

Get the new Version of web recorder and record it again

1. download the newest Web-recorder V2.5 dll ver 2.0.9 2. first put the dll file shipped with web-recorder IEauto.dll to your scripting directory 3. include folowing line at first position of your script before you press the web recorder script in macro scheduler LibLoad>%SCRIPT_DIR%\IEAuto.dll,hIE ...
by olllllliii
Fri Nov 19, 2010 8:43 am
Forum: Technical / Scripting
Topic: create txt file
Replies: 2
Views: 4203

Hallo i Hope this is working for you

This works with version 11 - 12

Code: Select all

Let>i=1

Label>loop
ReadLn>C:\a.txt,%i%,line
Let>Filename=C:\%i%.txt
WriteLn>Filename,Result,line
IF>i>1999
    Goto>ending
    ELSE
    Add>i,1
    Goto>loop
ENDIF

Label>ending
EXIT
by olllllliii
Tue Nov 16, 2010 9:26 am
Forum: Technical / Scripting
Topic: Graphic Buttons MouseOver or Clicked BMP
Replies: 2
Views: 3946

Re: Graphic Buttons MouseOver or Clicked BMP

That is perfect for my needs.

Thanks JRL :-)
by olllllliii
Mon Nov 15, 2010 10:59 am
Forum: Technical / Scripting
Topic: Graphic Buttons MouseOver or Clicked BMP
Replies: 2
Views: 3946

Graphic Buttons MouseOver or Clicked BMP

Do someone know how i can modify the Exit Graphic on MouseOver or Clicked (pressed down )... so that i can see if its pressed or mouse is over .I am also intrested in making own window styles for my Scripts Dialog>Dialog1 object Dialog1: TForm Left = 251 Top = 104 HelpContext = 5000 BorderIcons = [b...
by olllllliii
Wed Oct 13, 2010 10:04 am
Forum: Technical / Scripting
Topic: IGNORESPACES=1 breaks Separate
Replies: 2
Views: 3438

I Think its a bug

After Set Ignorespaces=1 the Separate command does not work correctly. there is nothing to count in variable lstOpenWindows. So it cant count something. The variable is empty . If u set Ignorespaces after the Separate command .....like this ( i know thats not what u want ) GetWindowList>strOpenWindo...
by olllllliii
Mon Oct 11, 2010 3:06 pm
Forum: General Discussion
Topic: Hook Windows IE address bar
Replies: 4
Views: 8360

Did this Help you ?

Let>i=1
Label>forward
RegistryReadKey>HKEY_CURRENT_USER,Software\Microsoft\Internet Explorer\TypedURLs,url%i%,urlOUT
IF>urlOUT=
ReadFile>C:\url.txt,info
MessageModal>%info%
EXIT
ELSE
Add>i,1
Let>WLN_NOCRLF=0
WriteLn>C:\url.txt,nWLNRes,urlOUT
Goto>forward
ENDIF
by olllllliii
Wed Oct 06, 2010 9:30 am
Forum: Technical / Scripting
Topic: Save whole array in a file without error ( dangerous )
Replies: 1
Views: 2784

Save whole array in a file without error ( dangerous )

Let>SEMI=; // Fill 2 Arrays Let>Memotext=1;2;3;4;5;6;7;8 Let>Memouser=call;look;wash;cool;iron;clean;PS3;something Separate>Memotext,;,arrItems Separate>Memouser,;,arrItemsU Let>k=1 ArrayCount>arrItems,nmax /// /// Some code to edit add or del some elements /// // Now i want to save that informatio...
by olllllliii
Wed Sep 29, 2010 1:46 pm
Forum: Technical / Scripting
Topic: String replace 'empty' by ends in Access vialotion at addres
Replies: 4
Views: 5511

Forgotten Space

StringReplace>fnOnly,fileExt, ,fnzOnly

U have to replace this line in the script i posted ...( I made a mistake )
by olllllliii
Wed Sep 29, 2010 1:28 pm
Forum: Technical / Scripting
Topic: String replace 'empty' by ends in Access vialotion at addres
Replies: 4
Views: 5511

Access Violation . I try this ...i hope it will help you

let>dataDirNew={"new"} let>transfFile_VAR_1={"ir"} let>fnNew=%dataDirNew%\%transfFile_VAR_1% ExtractFileName>fnNew,fnOnly ExtractFileExt>fnNew,fileExt IF>fileExt="" StringReplace>fnOnly,fileExt,,fnzOnly ELSE // next statement will end in a access violation // There is nothing to replace ..and nothin...
by olllllliii
Mon Dec 28, 2009 12:26 pm
Forum: Technical / Scripting
Topic: Read Serial Number of a USB or Harddrive
Replies: 2
Views: 4805

Read Serial Number of a USB or Harddrive

Do someone know how i can get the Serial number of a specific Drive ?
I need that to make my EXE files Copy Save ... so that only if the Stick
is in the computer with the right Serial Number ...the programm starts

THX for Help :-)
cron
Sign up to our newsletter for free automation tips, tricks & discounts