Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

HatakeAzzi

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

HatakeAzzi's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I've Resident Evil 5: Gold Edition… What is your version?
  2. @teh: > sweet it works, thanks:) > > now the last thing, colouring the text. > when you right-click on a item on the list, you can choose between a few colours e.g. Red, White, Blue, Orange, Green and when you click a colour, it will colour the text you selected. > > how'll I do that? For right-click on listbox you can made it using the Menu Editor (CTRL + E). For example: ``` Private Sub List1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) If Button = 2 Then If List1.List(List1.ListIndex) = vbNullString Then Exit Sub Else PopupMenu mnuColor End If End If End Sub ``` But to change color of only item, you'll use APIs, 'cuz VB6 don't do it.
  3. If I've understand what you're trying to do, use this: ``` Private Sub cmdAdd_Click() If Text1.Text = vbNullString Then MsgBox "You need write something." Else List1.AddItem (Text1.Text) End If End Sub Private Sub cmdDel_Click() If List1.List(List1.ListIndex) = vbNullString Then MsgBox "Select some item to delete." Else List1.RemoveItem (List1.ListIndex) End If End Sub ``` I just changed the name of the buttons. REMEMBER of change the names of componets.
  4. Buy a new computer and change your network velocity :P
  5. Change the icon on frmMirage/Properties, as Robin said, and chose the icon on Project/Project Properties/Make. Then you need to compile. Just it.
  6. Are you trying to change the picScreen? Well you might follow [this](http://www.touchofdeathforums.com/smf/index.php/topic,41446.0.html) tuto. Or are you trying to change some picture? In this case, the image always remains static. Srsly, I can't understand what are you trying to change :lipsrsealed:
  7. Thanks :D I need talk/write more in english :P
  8. Hehe, for nothing :) It was just an error in the timer, that's all. Download the program again and test to see if it works now :D
  9. Yeah, I put a photo of Demi Lovato because I love her :D (Her complete name is Demetria Devonne Lovato, hence I put the name of program like: **Demetria's** Reboot) :D But I think that a photo no will interfere on use of program. :) (It's off-topic :P) My english is stinky :P @Kratos: > Way to go with the off-topic XD > > Anyway, I get errors when I try and put it on english. > Run Time Error "53" > File not Found I'll check it now. Thank you for reporting!
  10. Hi… I don't know if I'm posting on the right place, but... I created a simple program that no more, no less, open your program again when it crashes. Extract it on somewhere (preferably, on server folder) and open-it. Preview: ![](http://img132.imageshack.us/img132/6382/screentm.jpg) **Download:** [HERE](http://www.megaupload.com/?d=H8JFZTZ2) Any error or BUG, post here! :cheesy: Thanks, and sorry for my bad english. :)
  11. In truth, has to be: ``` Call SendData("refresh" & END_CHAR) ```Otherwise, it'll not work. ;)
  12. It is a good idea too, I do not thought about it :)
×
×
  • Create New...