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 bkrike 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 jayscot

  1. jayscot

    XP Client Problems with server shares

    I have a network of about 40+ XP clients in a 2003 R2 domain. I have 1 XP sp3 machine that (no matter who logs in to it) can access shares on the server, but cannot change or delete (user has full security rights to share). If I login to any other XP box I have no problem, so I believe there is...
  2. jayscot

    How to get a list of SQL Servers

    I'd like to be able to populate a list of SQL servers on a network. This is to allow a user set up an ado connect string. I see it done in sql related programs, and I'm trying to find a class that has this functionality from within dotnet.
  3. jayscot

    getting an add-in to load in the ide

    I used the wizard to create a new add-in. The 1st time I created the project and ran it, the add-in loaded into a vb ide and gave me a menu selection for it under the tools menu. The 2nd time, I added code to show a form when the add-in was clicked, then re-ran the project, but got no addin. It...
  4. jayscot

    Load an embedded image

    It looks as though I can embed an image into a project, but how do I load it at run time? I really don't want to load it off the disk, but rather have it compiled in the project. Is this possible? I'm actually trying to load an image strip into an image list. As always your suggestions are...
  5. jayscot

    Default Constructor

    I believe the Mybase.New is only needed for objects Inheriting a base class. Mybase being the base class you are inheriting. So if you aren't using Inheritance, then you shouldn't need it.
  6. jayscot

    UserControl - Parent/Child creation

    I need to write a control that behaves much like the tab or toolbar control which allows the user to add to a collection of child controls at design time. Both the Parent and child are usercontrols. I want the child-usercontrol to show in the designer like a tab or toolbar button would after...
  7. jayscot

    Trapping KeyPress

    Sorry, I actually need to trap the keypress from a ComboBox. Where simply placing e.handled=true in the keypress works for a textbox-- does not work for a combobox. Private Sub ComboBox1_KeyPress(ByVal sender As Object, _ ByVal e As System.Windows.Forms.KeyPressEventArgs) _ Handles...
  8. jayscot

    Trapping KeyPress

    I need a way to trap a key from the keypress event. In VB6 you just set KeyAscii=0. It looks like e.Handled=True should work, but no effect. Thanks
  9. jayscot

    Loading xml from a string variable

    Well...gee wiz, I just found the System.IO.StringReader to be quite useful for what I'm trying to do here. Thanks anyway!
  10. jayscot

    Loading xml from a string variable

    How do I load a DataSet object from a string variable(loaded with xml data)? All of my documentation tells how to use a stream object and such, but no explanation for what I'm trying to do. I tried to using xmldatadocument.loadxml, but this doesnt seem to affect the dataset property. I really...
  11. jayscot

    Running a dll in developement

    How do I run a dll in code with .net? I know that in VB6 All I had to do was start my dll project and reference it from another project. Right now all I see that I can do is recompile the dll everytime.
  12. jayscot

    oleaut32 & stdole2 won't update in install

    Well, the log doesn't show any kind of error. I think my problem may be due to the fact that I'm using XP to do my compiles. This is the only thing I can think of. Although this is really wierd because I was using XP successfully to do my compiles, but now since a reinstall...no success. It...
  13. jayscot

    oleaut32 & stdole2 won't update in install

    I can't seem to install updated versions of these files. I'm using wise install master to script installs. I know i can boot to dos for win98 & me fat32, but what about win2k ntfs? I am including the new files in the distribution, but these 2 files don't seem to be getting updated.
  14. jayscot

    RPC stub error on NT4 installation

    I have an n-tier client/server vb6 app. The client tier consists of a standard exe referencing a number of activex dlls. The 2nd and 3rd tier are activex exe's(for use with dcom). The error occurs on my only NT4.0sp6 installation(the rest are win2k/xp which work fine). The message is...
  15. jayscot

    Re-establish client trusts after Win2k DC crash

    Where is "domains and trusts" located? Is this Active Directory Domains and Trusts? The only thing I see there is the domain, which I can right click and see a place for domain trusts. There is nothing here though.

Part and Inventory Search

Back
Top