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

  • Users: netbumbler
  • Content: Threads
  • Order by date
  1. netbumbler

    print job "forking" to send job to two destinations

    I'm trying to find a fairly clean solution for sending a single print job to the "printer" and simultaneously send the same print job to either email or a PDF file on the server. Anyone ever had to do this and/or know the best way to do it? There are program out there, but surely there's a way...
  2. netbumbler

    Cisco 1231B/G

    Ok... I feel like an idiot, but I've put a Cisco 1231 access point into bridge mode - and I can't get it out. I've got console - but it's somehow stuck in bridge mode. I can't find squat on cisco's web-site other than the manual which speaks nothing of disabling the bridge! Any ideas anyone...
  3. netbumbler

    sql in MS Access and syntax critique

    Could anyone critique this syntax for me? SELECT dpch.pname, dpch.pnum, (select count(*) from proquick where proquick.rph=dpch.pname) as expr1 from dpch; Anyone see any problem with this? I'm trying to get a count of proquick instances per pname's in dpch. Thanks, Chris
  4. netbumbler

    code economy

    I'm in the process of writing some extensive logic algorithms (lots of if-then-else) to interrogate poorly formatted text data files. What I'd like to do is streamline the code such that I can create a function to call into my main sub but have access to all the main subs variables (without...
  5. netbumbler

    repoint ex2k server to new AD domain

    I have two domains (A and B) running in live environment. I have a W2k/Ex2k/DC machine in domainA and I want to move the machine to domainB. I'm not sure about the message store impact among any other issues that may arise. I've seen most people creating a new EX2k machine and doing a SWING...
  6. netbumbler

    DBI UPDATE into ODBC fails...

    I'm fairly new to PERL and DBI, but from the standard examples I've been able to follow, this should work: $dbh=DBI->connect($dbName, $dbUsername, $dbPassword); $sql="UPDATE vs SET dc2='$fcriteria2' where dc2='$fcriterian'"; $Updaterecord=$dbh->do($sql) # note: $fcriteria2 and $fcriteria are...
  7. netbumbler

    Compex update query with two conditions?

    Here's my code: UPDATE pTquick SET pTquick.openpcount=DCOUNT("*", "pRquick", "unitnum=" & pTquick.unitnum & " AND isnull(pRquick.exporteddate)"); I'm trying to count the sum of process matching accountnums (unitnum) and only those processes that have a date of export. Is this a syntax issue...
  8. netbumbler

    referencing a field in a datasheet subform

    I know I've seen this before, but I can't find the reference and I've looked everywhere! I'm trying to reference a form!subform1!subform2!field(firstrecord, secondfield) value for a function originating at the form level. I swear I can't find a good reference for these syntaxes - anyone have a...
  9. netbumbler

    absolute record value in combo box query

    Is there a way to pull or reference the absolute record value from a query in a combo box? Thanks, Chris
  10. netbumbler

    INSERT syntax error

    Anyone see any problems with the following: strupdate2 = "INSERT INTO logstatistics(filename, countertype, refid1, refid2, counter) VALUES ('" strupdate2 = strupdate2 & filename1 & "','I1','" & ins1name & "'," & "' '," & 1 & ")" Thanks for any insight! Chris
  11. netbumbler

    list box row colors anyway to change?

    I'd like to change certain rows in my listbox to different colors - anyone seen that done yet? Would be VERY useful for my app. Thanks, Chris
  12. netbumbler

    loop and update failing after 400k records

    I've got a process that I'm trying to run that is a very basic loop til eof. I'm trying to build a new unique index (after adding a field to the data structure) that I'm building on the fly and then updating. Once the update is complete I simply movenext. The problem is it fails after about...
  13. netbumbler

    krview and Kei386EoiHelper

    I have a system module going slightly rogue on me - it's shooting up to 25-35% CPU and causing slow-down on the 25 users on the machine. I downloaded the microsoft krview app - very cool thing - and it gives me a breakdown of the event that is causing the problem. In NTOSKRNL is an even...
  14. netbumbler

    looking for patterns in a variable string

    Hi all, Thought I'd seek the support of the 'boards'. I'm trying to determine before importing a file if one of 3 predefined strings exist in the file name being imported (ie. 121204_us.txt - I'm looking to _check_ for the existence of 'us' or two others). Anyone have a simple way to do...
  15. netbumbler

    Finding ASCII values in a STRING variable

    Hi all, I'm pulling some data from the active user list table using the openschema function to enumerate the active user list. For example I'm trying to take each entry for 'login_name' and drop it to a text file. The problem is this: I'm trying to create a modified string that includes...

Part and Inventory Search

Back
Top