Recent content by JCreationsInc

  1. JCreationsInc

    file IO

    doh my code is useless, oooohhh :mad:
  2. JCreationsInc

    A passing thought.. Xbox 2 + .NET

    Hahahahahahahahahhahhaahaahahah LOL :p :p
  3. JCreationsInc

    Resize triangle redraw problem

    try vb.net first if it still occurs after reinstall then i would go to the vb website to look for some pathces
  4. JCreationsInc

    Resize triangle redraw problem

    Re-Install the software...
  5. JCreationsInc

    Switching Forms

    I = I + 1 can be changed to: I =+ 1 In the code window where you edit the code for the form1 just above the code there is to comboboxes i forget there names. One of the should say "Form1"
  6. JCreationsInc

    Switching Forms

    To copy and paste select the text with the mouse and press ctrl+c to paste press ctrl+v
  7. JCreationsInc

    Switching Forms

    Well you will get the hang of it if you stick to it. I remember when I first started using vb(version 3.0) I didnt know jack. Know I know enough and im still learning. These forums are a wonderful tool tell help you learn.
  8. JCreationsInc

    Switching Forms

    This is how you use it Heres what to do with the code I posted: This line should be placed right under the declaration of your Form1 class, you know where it say Public Class Form1 Dim Questions(5) As String, I As Long This should go in the load event of your form1, I decribed how to Do...
  9. JCreationsInc

    Switching Forms

    What you are talking about is a splash screen. They way you create that is by calling the form2 from form1. This is how you do it: Open form1 and in the control combobox at the top of the window select "(Base Class Events)" then on the combobox to the right select "Load" The event handling...
  10. JCreationsInc

    Switching Forms

    No problem
  11. JCreationsInc

    Switching Forms

    Ooops accidentlly pressed the wrong button Place this code in the begining of your class You need to add the first question in the load event of the form Declare Variables Dim Questions(5) As String, I as Long Set the questions Questions(0) = "Who was the creator of the Assembly Line?"...
  12. JCreationsInc

    Switching Forms

    You dont need more than one form, you can do it all in one form. Just set up the form the way you want it and then when the user clicks the ok button, the procedure will check the answer and and give the result. example: Declare Variables Dim Questions(5) as String Set the questions...
  13. JCreationsInc

    bitmaps in forms

    You cant save the position of the controls within the container to a image file. You can save the image file and then add the positions of the controls within the picture box to the end of the image file, but you will not be able to open the image file in other image viewers. Go on PSCODE.COM...
  14. JCreationsInc

    Some food for thought..

    Thank god you got out of that buisness. I was also taking the CCNA class the get certified, but I couldnt stay awake reading about cat5 cables(I forgot its name) and routers. right after I dropped the class Cisco fired 40.000 people. Lucky Me.
  15. JCreationsInc

    I got one Array Copying Question For Y'all

    wholly crap you got it! wow I never knew about that property thanks man!!!
Back
Top