Search the web
Sign In
New User? Sign Up
AutoItList · AutoIt Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 25408 - 25438 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25408
I've spent a couple of hours on this already. I went to the forum and pored over the help file. Like batch file issues, I've come to the conclusion that the...
W.M. Mitchell
mitchellwma1
Offline Send Email
Aug 1, 2004
7:23 pm
25409
Check the command line syntax for explorer.exe too. Gene PS. I would give it to you, but I've switched to Win2K ... From: W.M. Mitchell...
GS
gtsears
Offline Send Email
Aug 2, 2004
1:16 am
25410
Check this page http://support.microsoft.com/?kbid=130510. Command-Line Switches for Windows Explorer Gene ... From: GS [mailto:gtsears@...] Sent:...
GS
gtsears
Offline Send Email
Aug 2, 2004
1:25 am
25411
Hi! I'm sorry, you've lost me. Where do I check for this? Thanks! <g> Hypatia :oD ... From: GS [mailto:gtsears@...] Sent: Sunday, August 01, 2004 9:16...
W.M. Mitchell
mitchellwma1
Offline Send Email
Aug 2, 2004
10:59 am
25412
Oops, thank you!! I responded to your earlier message and I see that you provided the info here <g>! Thanks so much for this. I really appreciate it. ...
W.M. Mitchell
mitchellwma1
Offline Send Email
Aug 2, 2004
11:03 am
25413
is there a way to use autoit 2 to make it run cmd and use the ftp program to download a program? if so how in the world will i ever go about doing this? ...
Jeff
fusionmystik
Offline Send Email
Aug 3, 2004
1:05 am
25414
I've done it using an ini file with my url password etc in it What don't you know and maybe I can dig up the old proggy Rick ... ...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Aug 3, 2004
7:32 am
25415
basically the whole thing for example i want it to connect to my server, login using a user name and password then download a file from the FTP, i'm just...
Jeff
fusionmystik
Offline Send Email
Aug 3, 2004
9:00 am
25416
Jeff, here is a copy of a script that i have had from the heady days of V2.64.. copy it into a script and change IP Address etc (marked in red).. you can ...
David Drake
draken0898
Offline Send Email
Aug 3, 2004
10:18 am
25417
... to download ... Here is a version of script from autoit2 FileUpload: ; MsgBox, 0, AutoIt, Finished Cleaning folder a etc. About to start Upload. ; Upload...
davidt.autoityg@...
datconsulting
Online Now Send Email
Aug 3, 2004
11:40 am
25418
Florent, I've found the fresh article (02.08.2004) Turns a phpBB forum into a Blog: http://www.phpmag.net/itr/news/psecom,id,16920,nodeid,113.html There is a...
valery_vi
Offline Send Email
Aug 3, 2004
3:15 pm
25419
Speaking of RSS feeds, I've set one up for the AutoIt forum. For details see: http://www.autoitscript.com/forum/index.php?showtopic=4030 It'm still hacking...
Jonathan Bennett
hiddensoft
Offline Send Email
Aug 3, 2004
3:29 pm
25420
Hi, everyone has kept coming back with the switches things, it's too funny! <g> NO, GUYS! Switches don't correct what is wrong with syntax. Switches are just...
W.M. Mitchell
mitchellwma1
Offline Send Email
Aug 3, 2004
3:44 pm
25421
Jon, I'm like to see your good work: http://www.mag.obninsk.ru/cache/rss.php?rss=http%3A%2F% 2Fwww.autoitscript.com%2Frss.php ...
valery_vi
Offline Send Email
Aug 3, 2004
3:45 pm
25422
Heh, neat. :) Jon....
Jonathan Bennett
hiddensoft
Offline Send Email
Aug 3, 2004
3:58 pm
25423
First remark: AutoIt 3.0 is the best thing that ever happened to scripting under DOS/Windows! Previously, my scripts consisted of .bat or QuickBasic .bas...
czellweger
Offline Send Email
Aug 3, 2004
4:01 pm
25424
see i like this idea, because i'm basically looking for something that i can use command lines for, not really send commands, i liked the other script that...
Jeff
fusionmystik
Offline Send Email
Aug 3, 2004
7:38 pm
25425
I've tried this a little bit. You can use FileRead to read one byte at a time and then use Asc to return ... $file=@scriptfullpath $f = FileOpen($file,0) $byte...
Jeff Mikels
jeffmikels
Offline Send Email
Aug 3, 2004
7:50 pm
25426
... manipulate ... can ... the ... 200", ... perfectly ... the .jpg ... character ... is ... content ? ... I made some changes that allows FileRead to have a...
larrydalooza
Offline
Aug 3, 2004
9:04 pm
25427
Hi Jeff, ... http://www.ericphelps.com/batch/samples/ftp.script.txt -- MasviL...
MasviL
masvil2
Offline Send Email
Aug 4, 2004
1:20 am
25428
great thats what i'm lookin for :D, thank you everyone who helped me get this pain in the butt out of the way ... From: "MasviL" <masvil@...> To: "Jeff"...
Jeff
fusionmystik
Offline Send Email
Aug 4, 2004
1:45 am
25429
Ok i got it and it worked so perfectly i wanna cry lol jk but here it is FTP.AUT ... RunWait, ftp -s:Test.txt ... Test.txt ... open 127.0.0.1 67 anonymous ...
Jeff
fusionmystik
Offline Send Email
Aug 4, 2004
1:53 am
25430
Thanks, Lar. This does not solve my problem,however. I need to find the position of the first occurrence of the string "[Null]200" within the first block of...
czellweger
Offline Send Email
Aug 4, 2004
5:48 am
25431
If someone can help you with this it will be Larry. He helped me before and is really an expert. Long live Larry! Gert ... From: "czellweger"...
Gert Scheepers
gertscheeper...
Offline Send Email
Aug 4, 2004
5:55 am
25433
... $h=fileOPEN("a2.jpg",0) $blk="" while stringlen($blk) < 512 $blk=$blk & fileread($h,1) wend fileclose($h) ;---$blk now contains 512 bytes of data, but...
czellweger
Offline Send Email
Aug 4, 2004
6:13 am
25434
... does ... as a ... this works and I am sure it is faster if you use handles... $jpg = @scriptdir & "\a.jpg" $fLen = FileGetSize($jpg) $nPos = 1 $bFound = 0 ...
larrydalooza
Offline
Aug 4, 2004
6:19 am
25435
... I forgot... this is only when the changes I proposed get into autoit. I will put the AutoIt3.exe that I created in the files section for you. ...
larrydalooza
Offline
Aug 4, 2004
6:22 am
25436
Thanks, that works with LarryIt3.exe... But the circumvention is not exaclty what I expected. One other problem I solved in QB / VBA is: Retrieve all embedded ...
czellweger
Offline Send Email
Aug 4, 2004
6:41 am
25437
I don't know how AutoIt processes it, but in many languages, a string is terminated by NULL characters, so that when you search a string that has multiple NULL...
Jeff Mikels
jeffmikels
Offline Send Email
Aug 4, 2004
3:33 pm
25438
Thought you might find this interesting. It reads a binary file and then opens notepad with the hex readout of the file like this... 69 20 4F 70 74 69 63 61 6C...
Jeff Mikels
jeffmikels
Offline Send Email
Aug 4, 2004
6:16 pm
Messages 25408 - 25438 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help