Search results for query: *

  1. I

    Reinventing jezzball (the game) need some pointers

    Ok heres my code for what i got so far... Timer: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Dim gr As Graphics = Panel2.CreateGraphics() Dim Rpen As New Pen(Color.Red, 5) Dim Bpen As New Pen(Color.Blue, 5) Dim Br As Brush =...
  2. I

    Problem with my coding here its not hard help would be appreciated

    [Resolved] Problem with my coding here its not hard help would be appreciated Private Sub btnArmor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnArmor.Click With OpenFileDialog1 .Filter = "All Files (*.*)|*.*|" & _ "INI Files (*.ini)|*.ini" .FilterIndex = 1...
  3. I

    Viewing 3d files (opening a .w3d file and viewing it)

    Well exactly what the topic title says i havent managed to find the code so i can have w3d files viewed. If any one knows or has any clue that would help me greatly :D Regards, Gil-Galad
  4. I

    Reading a selected file, finding a line that begins with a text, thn storing it 2 var

    well im working on a program that you can open a file, i searches through it for lines that begin in a word, stores that whole line as a variable, then the variables are stored in a combo box this is what i got so far. Private Sub btnArmor_Click(ByVal sender As System.Object, ByVal e As...
  5. I

    Graphing Functions like on a graphing calculator

    Well this i got the idea for the calculator function... How exactly would i have certain things create a graph for example: on the form is a textbox and picturebox. just like a graphing calculator you can type in what y = and it will graph it. Once thats done ill be able to find the doman...
  6. I

    Replacing text in a file then making the file.

    Well ive had this problem for about a month and this is what ive been trying to do I have a INI. file in my bin folder, i need to search through it and replace all occurences of certain words. Then it must create it in the programs folder like CreateText for StreamWriter. I no this has to be...
Back
Top