AutoHotkey Community

It is currently May 26th, 2012, 5:54 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: February 21st, 2008, 12:46 pm 
Offline

Joined: February 13th, 2008, 7:03 am
Posts: 15
Location: Denmark
Hi guys i am currently writing a script to a online community, the friend list cannot be larger then 25...this is a shame, so i am making a script to fight the problem...how ever...I ran into a problem :

Code:
ButtonOpen:
   FileSelectFile, FriendFile, 1, , Open a File, Txt Files(*.txt)
   FileRead, FriendsInList, %FriendFile%
   Gui, Submit, Nohide
   GuiControl,,Edit,%FriendsInList%
 Return


Pretty normal function that opens a file and loads it into my edit field, the problem is - that I can only load 1 file (pr time i run the program)

If I press the "open button" again, and pick a new file - it wont read it into the edit field.

Any suggestions or ideas ? I have been sitting with the problem for about 2 hours and its getting really boring

:roll:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 21st, 2008, 8:15 pm 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
Code:
Gui, Add, Button, gButtonOpen, Open
Gui, Add, Edit, w640 h480 vEdit
Gui, Show
Return

ButtonOpen:
   FileSelectFile, FriendFile, 1, , Open a File, Txt Files(*.txt)
   FileRead, FriendsInList, %FriendFile%
   GuiControlGet, Edit
   GuiControl,,Edit, %Edit%`n%FriendsInList%
Return


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 21st, 2008, 8:26 pm 
Offline

Joined: February 13th, 2008, 7:03 am
Posts: 15
Location: Denmark
Thank you


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: bobbysoon, JSLover and 66 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group