Search:

Type: Posts; User: oppdelta

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    415

    Re: Flash Question

    Ohh, na it's just. It's getting tedious that i have to play a 3 minute long movie from the start all the time, jsut so i can sync up a bit of the music on frame 2000.
  2. Replies
    2
    Views
    415

    Flash Question

    Hey, this prolly doesn;t belong in this board. But it seemed most relevant. Sorry if it aint. Right the problem....

    I'm using Flash 8 Pro.

    Is there anyway to do a bookmark on the timeline...
  3. Replies
    3
    Views
    607

    Re: What control should I use?

    http://img25.imageshack.us/my.php?image=44809550yv4.jpg


    Hope that helps
  4. Replies
    2
    Views
    546

    Re: [2005] Console.Beeps

    kl cheers :)
  5. Replies
    2
    Views
    546

    [2005] Console.Beeps

    Hey, i saw somewhere a chart for the notes.

    A = like 175 frequancy... or somthing.
    B = would go lower or w/e 150 frequancy etc...


    Anyone got one of these charts :)
  6. Replies
    5
    Views
    957

    Re: [2005] Color Dialog Result

    Dim Result As String

    ColorDialog1.ShowDialog()
    Result = ColorDialog1.Color.Name
    MsgBox(Result)
  7. Re: Streaming in text file to variable instead of textbox

    This will read the file and store each line into array.



    Dim filename As String = "C:/thefile.txt" 'Directory to the file with data.
    Dim reading As New IO.StreamReader("filename")
    ...
  8. Re: filtering data from selected items in ListBox

    Hi, if all the data is stored on a single line then this makes it a bit difficult. But since (if i read right) each line has a bus number with the routes on the same line. Correct me if i'm wrong...
  9. Re: [2008] Creating Grid out of Picture Boxes?

    if all your picture boxes are the same size you can use that to an advantage. You can use a loop to do each row then do anothe rloop for the next row. So on...


    somthign like (thinking off top of...
  10. Replies
    5
    Views
    999

    Re: ToolStrip

    Ahh cheers :)
  11. Replies
    5
    Views
    999

    [RESOLVED] ToolStrip

    Hey, how can i make a toolstrip be able to be dragged.

    Like in "Word, Excel" the menus allow you to drag them around the screen.

    I got on eon my form but when i run it i cant drag it around....
  12. Replies
    56
    Views
    5,807

    Re: [RESOLVED] [2008] Arrays in VB2008?

    in that picture for the "moveable" menus. how you do them?
  13. Replies
    24
    Views
    1,792

    Re: [2005] msgbox

    input = MsgBox("Message Here", MsgBoxStyle.YesNo)

    if input = 6 then
    msgbox("You have selected YES")
    else
    msgbox("You have selected NO")
    end if
  14. Replies
    3
    Views
    798

    Re: Deleting an item in an Array

    I got that.


    So you basically saying. Instead of removing it from the actually array it's self in tthe script you remove the name form the file then "Re Array" in the script...

    Just to clarify...
  15. Replies
    56
    Views
    5,807

    Re: [2008] Arrays in VB2008?

    Shot in the dark but this ok? Two ways:

    1

    Dim images(20) as picturebox

    images(1).Image.FromFile("filename1")
    images(2).Image.FromFile("filename2")
  16. Replies
    3
    Views
    798

    Deleting an item in an Array

    Hi i got an array that holds names. Now i got a button that i want to delete a name.

    Somthign like:

    dim names(10) as string


    button clicked:
    names(2) = ""
  17. Replies
    30
    Views
    11,173

    Re: ListView.FindItemWithText() Help

    I've never came accross this before but foudn this.


    http://msdn.microsoft.com/en-us/library/aa208355(office.11).aspx
  18. Replies
    30
    Views
    11,173

    Re: ListView.FindItemWithText() Help

    This what you are on abouts? This all goes into the "Search/Find" button what ever you use.

    Dim index As Integer
    Dim maxindex As Integer
    Dim searchcriteria As String
    ...
  19. Re: [VB .NET or 2005+] Simple Registry & Login System V1

    Sorry i didnt get it done today, been out with family all day :)
  20. Re: [VB .NET or 2005+] Simple Registry & Login System V1

    I know, i'll make it tommorow. I getting tired, been walking literally all day.
  21. Re: Dynamically Rename Multiple Similarly Named Objects

    dim Button_Collection(#) as Button

    #Put this to the number of buttons your goign to use, minus 1. EG: I got 10 buttons so you put it to 9 cuz arrays use "0" as well. And to rename each button in a...
  22. Replies
    2
    Views
    462

    Re: [2008] Login and Registration

    I've made a simple login program with the scripts. Just read the post...

    http://www.vbforums.com/showthread.php?p=3367648#post3367648
  23. [VB .NET or 2005+] Simple Registry & Login System V1

    Hi this is a simple program that allows you to register yourself and then log in using the details you used to register with.

    This should really be used for fun. The file isnt actually that...
  24. Replies
    2
    Views
    462

    Re: [2008] Login and Registration

    Hi i've seen this many times, i think i might have a crack at making a program like this so you can add it to your game.

    But to get you on the ball, you can create a form that the user has to...
  25. Replies
    4
    Views
    605

    Re: [RESOLVED] [2005] Global Variables?

    Your Welcome
  26. Replies
    11
    Views
    956

    Re: Little Help Finding Somthing

    Thanks again. :) alot of help xD i think thats a rate.
  27. Replies
    4
    Views
    605

    Re: [2005] Global Variables?

    http://img231.imageshack.us/my.php?image=20996638ev6.gif

    The global variable can be used throughout the form.

    The local variable can only be used within that "Private Sub"

    Hope that helps.
  28. Replies
    11
    Views
    956

    Re: Little Help Finding Somthing

    Thank you very much. How would i put this into a loop for an array.

    FOr example i have a list of names and so on.

    would it be

    for index = 0 to 100
    sw.WriteLine(arrayname(index))
    next...
  29. Replies
    11
    Views
    956

    Re: Little Help Finding Somthing

    Just data entered into textboxes. Like names age and an their ID. Example

    ID Name Age
    122212, OPPDelta, 17
    122211, Name10, 19


    etc...

    then how would i read that from a file...
  30. Replies
    11
    Views
    956

    Re: Little Help Finding Somthing

    All i found when searching was.

    http://www.vbforums.com/showthread.php?t=544290&highlight=streamreader+streamwriter


    :(
  31. Replies
    11
    Views
    956

    [RESOLVED] Little Help Finding Somthing

    Hi, i've been lookign for about an hour now for some tutorials on how to "write data" to a file and "read data" from files. I've checked youtube and the ones i'v found are all VB6.

    I'm using 2005...
  32. Replies
    2
    Views
    13,648

    Re: [VB 2005] Game Inventory

    Ah sorry, when you say compiling. That meaning the exe or somthing? Sorry for being a noob here...


    EDIT: OH wait i know what you mean XD
  33. Replies
    2
    Views
    13,648

    [VB 2005] Game Inventory

    Hi this is a simple inventory that can be used on small games.

    If you are newish to VB then read on.


    It at the moment has 4 slots but you can add more by (lets run on the example of "10"...
  34. Replies
    2
    Views
    517

    Re: Inventory Script

    k thanks. I do now.
  35. Replies
    2
    Views
    517

    Inventory Script

    I cant find the place were you can submit some scripts. So i put it here, if it needs moving then w/e... sorry :)

    Here is a inventory script for games.
  36. Replies
    9
    Views
    967

    Re: Listbox split

    You can try somthign like.

    Then you somehow store each line into a array.

    dim DISPLAYFORMAT as string = "{0, -20}{1, -25}"


    {0, -20} Gives the first column in the list box the space of 20...
  37. Replies
    4
    Views
    497

    Re: Using script to create a label on form?

    Aww man cheers. :)

    That was doign my head in. Thanks
  38. Replies
    2
    Views
    601

    Re: textbox backcolor

    TEXTBOXNAME.BackColor = Color.Gray


    that how it is in VB 2005 anyway...
  39. Replies
    11
    Views
    837

    Re: Simple Textbox Arrays

    try this:

    Dim textboxes(#) as textbox

    I = (#

    textbox(i).text="hello world"
  40. Replies
    4
    Views
    497

    Using script to create a label on form?

    Hi, this is a bit hard to explain.

    I need help to script a label that will appear on the form. I dont mean just mean go into the editer and drag the label onto the form. I mean actually script...
Results 1 to 40 of 40



Click Here to Expand Forum to Full Width