Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ssj3gohan

  1. ssj3gohan

    Error with a class

    Thanks,Bob. I have defined my type as "Public Type CDVendorInfo", which going by your list is less restrictive than the "Friend". So shouldn't that mean that "Public" should work? You also mentioned instancing. How do I change this property? (When I said class I meant class as in a .cls file...
  2. ssj3gohan

    Error with a class

    thanks gmmastros! It worked. But what is a friend function and how does it differ to a public/private function?
  3. ssj3gohan

    Error with a class

    I'm trying to convert a haphazard module to a class to improve reusability. However, I get the following error when I try to compile: Compile Error: Only public user defined types defined in public object modules can be used as parameters or return types for public procedures of class modules...
  4. ssj3gohan

    where can i downlaod a sgrid 2 installer?

    You should put the binary in your system folder (C:\Windows\System32 on most XP systems), and run regsvr32 to globally register it so vb can find it. I've had no problems using the binary this way.
  5. ssj3gohan

    how to make it look like xp style

    how to specify manifest and add resources?? thanks
  6. ssj3gohan

    how to make it look like xp style

    i made apps in vb6 and i can get xpstyle from manifest and resource files, but it doesnt seem to work for vb.net 2003 any ideas??
  7. ssj3gohan

    word format

    is there any way of making a vb prog create a word file without using OLE? i was thinking of writing the headers for the word file with the print or put commands. thanks
  8. ssj3gohan

    ActiveX Forms

    thanks, but it just doesnt work, i tried it already. let me clarify, the code is something like: msgbox "hello" call Encode() frmabout.show msgbox "About Shown" the dll will popup "Hello" and call encode, but the popup "About Show" never turns up, so i am assuming that the about form is never...
  9. ssj3gohan

    ActiveX Forms

    How do i get an acitveX dll to diaplay a form when a function is called? i am using the follownig code: frmAbout.show but the program seems to ignore the line and continues on. Thanks for the help.
  10. ssj3gohan

    application versions

    thanks guys
  11. ssj3gohan

    application versions

    i have just recently started in vb.net, holding back upgrading from vb6 due to cost. Anyway, I want to add a splash screen showing version and author etc. In vb 6 there was a simple code of app.major for version app.minor for point release and app.revision for revision. in short: the app...
  12. ssj3gohan

    ActiveX DLL

    this function gets called from the main class Function ShowAbout() Dim About As String About = App.ProductName & " " & App.Major & "." & App.Minor & "." & App.Revision _ & vbCrLf & App.FileDescription MsgBox About, vbInformation, "About..." frmAbout.Show End Function but everything after...
  13. ssj3gohan

    ActiveX DLL

    thanks, but the form still wont show.
  14. ssj3gohan

    ActiveX DLL

    can activex dlls display a form? i made a msn plus plugin but the form never shows. if i put a msgbox there it will show but anything after and includin the form.show code is ignored
  15. ssj3gohan

    HOW INSERT LICENSE AGREEMENT WITH PACKAGE & DEPLOYMENT WIZARD

    dont know where but there is a p&d wizard mod that lets u customize a lot of setting -language -skin (like windows blinds) -custom text it claims to be ultimate, the best, final p&d wiz balhblahblah

Part and Inventory Search

Back
Top