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 twigs1981

  1. twigs1981

    KeyPress Event Arguments

    Try If Not (Char.IsDigit(e.KeyChar) OrElse Char.IsControl(e.KeyChar)) AndAlso Not e.KeyChar = "."c Then e.Handled = True
  2. twigs1981

    System.Drawing.Printing Printing Blank Line

    I can write anything but blank lines to the printer. If I write a " " or string.empty or non printable character nothing is written. I want to use this as a form feed. I would be happy to do a form feed. This is for a receipt printer, don't know if that will make a difference. Any help...
  3. twigs1981

    Program Affinity

    We just bought ISA 2004 Standard and it will be on a dual 800 Mhz system. We'd like it so the affinity is always set to one (having a single processor license). Anyone know how to do this without having to manual set it each time. If this is terribly easy I'm sorry. This question was asked of...
  4. twigs1981

    SP with in SP

    I am trying to create a that calls other stored procedures. If I call one and it fails I want to roll back, but I when I try to do something like declare @MyResult nchar (50) SET @MyResult = EXEC master.dbo.sp_addrolemember @role, @username I get "Error 156: Incorrect syntax near keyword...
  5. twigs1981

    2 Problems with Office Suite

    The problem was a policy issue from the old NT 4 domain. Once the old NT files were removed we were able to migrate as expected.
  6. twigs1981

    2 Problems with Office Suite

    On a fresh install of Windows XP Pro I have also done an Office XP - Small Bussiness custom installation of everything except Outlook. After this install I installed Outlook 2003. When anything from Office XP - Small buiness is run it asks for initials, and when outlook is run it only produces...
  7. twigs1981

    Remote Desktop - Error

    well the problem with checking out the NT server is that we got it through a VERY recent aquisition and its in either (IN or TX) so we can't do much about checking the settings ourselves. but we are trying to connect using the internet, through a proxy server. I ran my answers by my boss and...
  8. twigs1981

    Remote Desktop - Error

    I'm using blank user name and password for both the sucessful and unsucessful connection attempts...
  9. twigs1981

    Remote Desktop - Error

    I'm trying to use a xp client to connect to a NT4 server and as most users I can connect, however the users I need to connect can't it gives the following error: "Remote Connection might not be enabled or the computer might be too busy to accept connections" but if I log on as...
  10. twigs1981

    Autodiscovery Network Nodes

    Can I get some guidence as to how I would go about discovering the all the nodes on the local network? thanks, twigs1981
  11. twigs1981

    how to use "Imports"?

    that seems to be the route I'll have to go.. but I've never written anything to print so I was hoping to skate by again where I can click and drag and change the format on a whim :-/... so much for the lazy virtue in programming;)
  12. twigs1981

    how to use "Imports"?

    lol.. yeah... damn MS and their various versions of software! :-P
  13. twigs1981

    how to use "Imports"?

    I'm using VB .NET standard so I guess I'm SOL since I can not add a crystal report.. Thank you much I'd of played with this forever :)
  14. twigs1981

    how to use "Imports"?

    if I knew what reference to add I'd be happy to.. msdn just says: "Add a reference to CrystalDecisions.CrystalReports.Engine. " and I look for it and I don't see it... I've looked in COM and .NET I assumed that is why the "imports" failed but then I don't understand why I...
  15. twigs1981

    how to use "Imports"?

    I am unable to: Imports CrystalDecisions.CrystalReports.Engine it seems VB can not find it. I have crystal reports on my system but I have no idea how to do get the import to work. Any help would be nice since I'm clueless :) thank you

Part and Inventory Search

Back
Top