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 SkipVought 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. 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
  16. twigs1981

    Custom Print Program

    anyone try writting a custom print program for global exchange services's desktop edi? I don't know anything that is going on like how to get the data from the file I want to print. I was just told to figure it all. any guidence would be appricated! thanks in advance
  17. twigs1981

    Writting a Function

    thank you very much! time to work! well when lunch is done ;)
  18. twigs1981

    Writting a Function

    great! well thats a good start! what does it look like syntaxicly to declare a function I'm so use to: <return type> <funct name>(<args>) { [return] } and {} block statments aren't used (as far as I'm seen) in VFP so could you give me a generic funct please?
  19. twigs1981

    Writting a Function

    I'm new to foxpro and more accustomed to C/++ where I can just write a function anywhere I want so could someone please explain to me how to write a function i.e. seperate file, function declaration, returning(and is the type returned specified?), passing by value/reference. I don't have any...
  20. twigs1981

    Scripts won't run

    well it looks like the boss has given up for now.. but thanx for everything

Part and Inventory Search

Back
Top