Jump to content
Xtreme .Net Talk

mutant

*Experts*
  • Posts

    1922
  • Joined

  • Last visited

Everything posted by mutant

  1. You have a button and you want to show a new instance of another form? If yes then: Dim someform As New SomeForm1() someform.MdiParent = Me.MdiParent someform.Show() Me.Close()
  2. Convert.ToDouble(someint) This should help you. [edit]fixed typo[/edit]
  3. picbox.Image = Image.FromFile("path") :)
  4. Change that: Public formmain As Form To: Public formmain As Main 'or whatever your form is called You only declared it as a form, so it wont have what your form class has.
  5. What is the problem? The control displays everything all right.
  6. Refer to my post in that thread :) : http://www.xtremedotnettalk.com/showthread.php?s=&threadid=73157
  7. myFrmSearchFile_Key.Location = New Point(templocationx,templocationy) :)
  8. You cant put any top level controls (forms) in normal controls. But you can make it look like its here with the location property, set it to where the panel is.
  9. Is the program showing any errors? If yes, what lines?
  10. You can try this, not very bad, its a C# to VB.NET converter :) : http://csharpconverter.claritycon.com/Default.aspx
  11. Without it you get no help in VS IDE, it also contains loads of good articles. Go on, install it :)
  12. Or :) Convert.ToDouble(yourstring)
  13. Yeah, VB.net can make a game. You can some simple GDI+ game or go with managed DirectX which was made for .NET framework so it works great with .NET languages.
  14. Why not :D
  15. if(e.KeyCode == System.Windows.Forms.Keys.Up) Sorry, I thought you were talking about the KeyUp event :rolleyes:, sorry.
  16. Look at this MSDN page, it should help you: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconusingsetupexebootstrappersamplewithapplication.asp
  17. Use this: if(e.KeyCode == System.Windows.Forms.Keys.Enter) MessageBox.Show("Enter pressed");
  18. I had the same problem, but I hit Retry button and then I think it connected because it said that no updates are available. :confused:
  19. I didnt program much in .NET compact framework, but yes you need compact framework and it is very limited but you are pretty much stuck with it for now until they come up with something better.
  20. A new process is a new application, but if you have two threads they will run at the same time.
  21. Try something like this: Dim reader As new IO.StreamReader("pathtofile") Do While reader.Read() reader.ReadLine() If reader.Peek = 0 Then 'it was last line End If Loop
  22. I dont know much about this topic but I remember reading something about jobs in a game developing company, they said that CDs are a good way to show you skills so CDs should be okay to attach to your resume.
  23. You could cast the MdiParent property to the type of your form and then you could access the string.
  24. Are you saying coding in VB.NET is bad? :eek:
  25. In your designer click on your main menu, it will expand and then double click your menu item, VS.NET will add an event handler for you. Then you can just type the copy you want.
×
×
  • Create New...