Search results for query: *

  • Users: Ruud
  • Order by date
  1. R

    File Extension

    the extention can be anytings. in this case i just want to save my file into *.dss. i had write the program and it run well in Ms. windows xp, but when i try to write my program in Windows mobile 2003, the program still running, but the extention not set automatically to *.dss but its save...
  2. R

    File Extension

    hello everyone, i need some help. i'm developing program application for smartdevice (pocket pc 2003 SE) and i use vb.net 2005. but i have problems to save my variable value to a file with special extention. i want to save my file with dss extention (*.dss). but i can do that in smartdevice...
  3. R

    SaveDialog and OpenDialog in VB.net

    hello hello, thanks for the solutions. i think that, i had knew the solutions for my problem now. thanks for the suggestions too.
  4. R

    Module in VB.net

    Thanks thanks you! but to much if, coz i use 40 forms. but i have knew the solution now! Thanks Very much
  5. R

    SaveDialog and OpenDialog in VB.net

    How to Saving value of variables into a file? i want to do these... How to Saving value of variables into a file? case: 'on module Module Module1 Public x, y, z as Integer Public a, b, c as String End Module 'on Form there are 6 Textbox: T1, T2, T3,...T6; And 3 Button: Button1, Button2...
  6. R

    SaveDialog and OpenDialog in VB.net

    hello everyone, how use SaveDialog and OpenDialog to save and Open file in VB.net. for example, if i want to save value of my variable in specific file. total=10 max=4, etc and how i can save it in file, so i can load that value by open the OpenDialog?? please help me! Thanks you
  7. R

    Control array

    Thanks Thanks for your solutions, i think i had know the solutions now!
  8. R

    Control array

    if i have textbox1, textbox2,...textBox5 so, how do this in vb.net: for i as Integer =1 to 5 TextBox(i).Text=i next Thanks very much
  9. R

    Module in VB.net

    Problem Private Sub Button1_Click (...) Handles Button1.Click Call Test(Me) End Sub 'in the module: Friend Sub Test (ByVal Frm As Form) Frm.TextBox1.Text = "10" End Sub ============================ i have tried but error occure, because can not found TextBox1 in class Form. so what must i...
  10. R

    Module in VB.net

    hello, i want to ask everyone here how do these: i heve vb 6.0 source code like this: example: i have Vb.net form name: form1 with textbox1, and button1. sub button1.click() { Test form1 } and i have module name Module1 and this module do this: Sub Test(byVal Frm as Form)...
Back
Top