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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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
  16. ssj3gohan

    Registry Question

    dont know if any help but the following is code from vbaccelerator.com. it is their registry i/o class START CODE Option Explicit ' ========================================================= ' Class: cRegistry ' Author: Steve McMahon ' Date : 21 Feb 1997 ' ' A nice class wrapper around...
  17. ssj3gohan

    Fix form size but keep minimise button?

    how? i am having the same trouble thx
  18. ssj3gohan

    Error 1000

    the file variable is the absolute path of the file, e.g. "C:\windows\media\chord.wav
  19. ssj3gohan

    Error 1000

    My program encodes and mp3 and then deletes the source wave file. When i run my program in the vb6 ide it works properly, but when i compile it and run it after it encodes adngets up to the deleting bit i get an error "Runtime Error 1000-path/file access error". Does ne1 no what this means and...
  20. ssj3gohan

    Playing CD

    How to play a cd using MCISendString commands???

Part and Inventory Search

Back
Top