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 strongm 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: *

  • Users: Udir
  • Order by date
  1. Udir

    Need to parse and convert to a number

    It worked great... Thanks for your help!!!
  2. Udir

    Need to parse and convert to a number

    Yes there are spaces, and yes it is a variable... Never the same number. That was just me keying it wrong.
  3. Udir

    Need to parse and convert to a number

    Ok let me fix this. C2, D2, E2 contain the user variables x1, y1, z1 The data that I want to use starts in B4 and runs throughout the B's. I want the numeric part to appear in C, D, E. x2, y2, z2. in the same row as the information is extracted appears (c-e) in column h of I want run this...
  4. Udir

    Need to parse and convert to a number

    Column in the first case will contain the "random string (-336179, -111388, 4469). Some number of rows in between that and then next grouping of data that I want to look at, is two columns of garbage. Usually 15 rows in between. There is currently nothing in Columns 3-5 yet, but I would like...
  5. Udir

    Need to parse and convert to a number

    Ok, in excel I want to paste some data that will have an unknown set of information in the paste from another program. The knowns are that the information that I am wanting to use is contained in the string that appears in column 2 within random rows within the worksheet. When I paste the data...
  6. Udir

    Need to parse and convert to a number

    Well that is what I wanted to accomplish, but I just want to do it automatically when I copy a bunch of data into the worksheet. That information is actually in column 2 but only like every 10 rows, but that is subject to change.
  7. Udir

    Need to parse and convert to a number

    I have a string that is in the form of: Garbage(-338409,-110472,8275) Garbage(-336179,-111388,4469) I want to sort the data out into 3 seperate columns and use them as numbers so I can use them for calculations. How do I best go about that?
  8. Udir

    System Restore Alternatives

    Thanks for the help. It ended up being a corrupted LSP. Ran the fix on cexx.com Again thanks for the help.
  9. Udir

    System Restore Alternatives

    Well I can't accomplish it in Safe mode, same problem. Can't get on the internet to get any other software. IE cant get Microsoft Antispyware to load b/c I can't validate and update. Thanks for the suggestions.
  10. Udir

    System Restore Alternatives

    I have a laptop that I am trying to fix, that is having all types of problems. The start bar won't appear, cannot uninstall anything from the control panel, internet won't load, the list goes on. Another pressing problem is the MS System restore software won't load either. I have a point...
  11. Udir

    JScript Global Variables

    Ok, I understand your example. So would it be possible to change the value of aNumber iside the function and it be global to the rest of the program? I ask because I have several values declared like IX and IY that I need to access in a function, assign that value to another variable, and...
  12. Udir

    JScript Global Variables

    Hmmm.. for some reason when I ran it the first few times I got an object expected error. So if I declear the variables first and then use them in a subequent function the function changes the value of the global as long as I don't have another variable with the same name decleared in the function?
  13. Udir

    JScript Global Variables

    I read that you can declare varables as global by not including the var infront of it, but when I do: logFileName = "C:\\scripts\\testlog.txt"; writeLogLine("Hello"); function writeLogLine(msg) { var ForReading = 1, ForWriting = 2, ForAppending = 8; var FTarget, File, MyDate, MyTime...
  14. Udir

    function arguments

    Ok I wrote this to test out the idea. x=func(); y=func(65); z=func(20); WScript.Echo(x); WScript.Echo(y); WScript.Echo(z); function func(arg) { if (arg + '' == 'undefined') { arg = 23; } if(arg == 65) { arg=19; } else { arg = 95; } return(arg); } One would expect x=23 y=19 z=95...
  15. Udir

    function arguments

    So what would happen if the argument intended to be passed was a bool and I didn't pass it so it was undefined? function func(arg) { if(arg) statement; else statement1; } var x = func(); would it return whatever statement1 actually processed? And thanks for that second tidbit of info. That...
  16. Udir

    function arguments

    If there is a function like function funname(name) { statements; } is it possible to call the function without actually passing the function anything? like x = funname(); Also, aside from msdn.microsoft.com can anyone recommend a good website/tutorial on objects in JScript?
  17. Udir

    VB 6 DLL Debuging Question

    I have a DLL written in VB 6 that is an addon to a third party product through a hook-in application. The program works perfectly on intel platforms, but on AMD platforms it crashes at several reproducable points, but they do not coincide with any of the logical places inside the code, ie...
  18. Udir

    Debuging DLL Info

    ??? Why ask in the C/C++ forum when I am writing in VB 6?
  19. Udir

    Debuging DLL Info

    I have an DLL that hooks into another application, so I can't run debuging inside VB6 console. The problem appears to be with 2 or 3 specific private sub functions. But the weird part is I have two machines. On my intel platform it works fine, on my amd platform it crashes at two particular...
  20. Udir

    Javascript login script quest!

    That worked great! Thanks! All my systems are winnt based, so it shouldn't be a problem.

Part and Inventory Search

Back
Top