Search results for query: *

  1. I

    nibbles clone game

    Ok Im getting the codes right now... Its really buggy im trying to find out why, once it hits itself it doesnt reload your next life the program just ceases but when you hit a wall it reloads and they are sent to the same sub. Also alot of things are gonna be wierd bu here all of it is anway...
  2. I

    nibbles clone game

    Well i got level1 done for this thing im making if your interested in seeing it. The codes very short but it does alot. its all gdi+ btw.
  3. I

    nibbles clone game

    Ok couple questions. What exactly is mintStartSnake? Im geussing mintBaseObjects is an array of the objects or maybe something else.. Everything i get.
  4. I

    nibbles clone game

    Wow thats exactly what i used to do (yesterday) today i started GDI+ and i got everything down but using maxtrixes, and paths. I could easily post up my code for the game im making it uses GDI+ but it doesnt work the same because its drawing pictures and what i need is to make the pictures a...
  5. 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 =...
  6. I

    nibbles clone game

    Yeah i got some questions... I have a similar game, not as amazing, and im having problem setting a reference to the tiles i already set. For example i need to no if a tiles coordinates equals a wall, or any thing i have drawn. Another is how can i make it so if it runs into its other parts it...
  7. I

    Replacing text in a file then making the file.

    Its not an asignment and its done already so this is old I did something like this.. Private Sub StreamReader() With OpenFileDialogBox1 'All the OpenFileDialog1 stuff here Dim sr As IO.StreamReader = IO.File.OpenText(.Filename) Dim Line As String Do While sr.Peek <> -1 Line = sr.ReadLine If...
  8. 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...
  9. I

    Text Boxes and Game

    Yeah i had this exact same probelm for a program i had.... didnt work out so i quit making the game :/
  10. 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
  11. I

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

    Thanx Alot :D Ok this is what i got except i dont understand it (noobishness standing out again) Dim sValue AsString Dim sPath AsString sPath = .FileName INIWrite(sPath, "Section1", "Key1-1", "Value1-1") ' build INI file INIWrite(sPath, "Section1", "Key1-2", "Value1-2")...
  12. I

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

    um well what i meant is that it searches through the document. the placement of the things are uknown so doing that wont work. the lines tha begin with "Armor " need to be stored into a variable. I already knew that stuff above but what i need is a find feature where it searches through the text...
  13. I

    Combo box problem

    I use .Text because its easier for IF statements If cboMaterial.Text = "ItemsName" Then 'Commands End If Thats my way though
  14. 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...
  15. 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...
  16. I

    Table of Checkboxes

    what would be the purposes ive made a table of 900 checkboxes on a program i made.... Describe the commands of them and exactly what your talking about and i can give some pointers
  17. I

    Replacing text in a file then making the file.

    no no no im not using ini file this is the deal. The part of the program im making opens a document (Premade located in the bin folder of course)(its in ini form for game purposes), replaces all occurences of words in it, then it recreates the document in the programs folder. The reason im not...
  18. 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