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

  1. AnonGod

    Deploying a Windows Service

    Here's the link I used - http://support.microsoft.com/?scid=kb;EN-US;317421 :) -Andrew [Signature modified by admin request] -TAG [Contact information removed by another admin request]
  2. AnonGod

    .NET Process object - 32 or 64 bit?

    Solved. Ended up using My.Computer.Info.OSFullName to see if "x64" was in the name. Then used IsWow64Process Windows API call to see if each process was a 32 bit running on a 64 machine. :) -Andrew [Signature modified by admin request] -TAG [Contact information removed by another admin request]
  3. AnonGod

    .NET Process object - 32 or 64 bit?

    Using Process.getProcesses() i'm pulling in all running processes on a machine. I need a way to determine if each Process is 32 or 64 bit. Problem is when I'm running a 32 bit host application on a 64 bit machine. When it tries to read Process p.MainModule.ModuleName (or any module access) it...
  4. AnonGod

    Screen Capture software request

    That's looking pretty good. I like that I can have it save just the last minute of the recording session. Now just some tweaking to allow it to always be running and give a hotkey to dump that minute to a file and it's perfect. This gave our developer some good ideas. Thank you. :) -Andrew...
  5. AnonGod

    Screen Capture software request

    Hello - I'm looking for a Snagit-like software that has the following features: -- When running, is always recording the screen. -- When an option is pressed, the last 30 (60, 90, whatever) seconds of screen capture video is dumped to a file. -- Is customizable for how many frames per second to...
  6. AnonGod

    Search Byte Array for Pattern

    I've considered the String's .indexOf method, but that would require a whole seperate chunk of memory to convert the byte array to a string. Double the memory, not double the fun. :) -Andrew [Signature modified by admin request] -TAG [Contact information removed by another admin request]
  7. AnonGod

    Search Byte Array for Pattern

    Excellent, thank you for the sample. The failure array in my original post provided some kind of error checking, but I'm not sure if it was needed or not in any situation. :) -Andrew [Signature modified by admin request] -TAG [Contact information removed by another admin request]
  8. AnonGod

    Search Byte Array for Pattern

    I'm looking for something that I can plug 2 byte arrays into and get an index returned of the first occurrence of the first array in the second array. Found this link that does what I want it to do, but I do not understand the use of the failure array...
  9. AnonGod

    Outbound PPTP VPN through PAT

    Noticing the same problem with multiple outbound FTP connections.... beginning to wonder if Netscreen was a good idea... :\ -Andrew [Signature modified by admin request] -TAG anongod@hotmail.com 'Drawing on my fine command of language, I said nothing.'
  10. AnonGod

    Outbound PPTP VPN through PAT

    Love it when you can solve your own issue... :) I needed to set up a Fixed-Port DIP to channel PPTP traffic through - works for one client, NOT for multiple clients. I assume if the DIP pool was multiple IP's it would be fine. Still hoping to find an answer where I can use one external IP...
  11. AnonGod

    Outbound PPTP VPN through PAT

    Note: We have a NS-20 as well with the same config and the same problems. Has to be a config issue right? New to Juniper firewalls, so learning what I can. Thanks -Andrew [Signature modified by admin request] -TAG anongod@hotmail.com 'Drawing on my fine command of language, I said nothing.'
  12. AnonGod

    Outbound PPTP VPN through PAT

    Just installed a new 5GT and having trouble VPN'ing out from any PC's that are using the interface (or DIP) ip. Logs show the outbound PPTP connection, but not the following GRE connection. (xp vpn client hangs at authentication.) Now, on my servers that have MIP's, the connection goes...
  13. AnonGod

    Internal Error - main2_w, 257

    wow, actually found an answer - didn't think I would. See link and quote: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=182&threadid=881232&highlight_key=y&keyword1=main2%5Fw [Signature modified by admin request] -TAG anongod@hotmail.com 'Drawing on my fine command...
  14. AnonGod

    Internal Error - main2_w, 257

    First, apologies if this is the wrong forum, please redirect me if necessary. :) Trying to run an exe from a correspondence course. On my desktop it runs fine - If I copy the files to my desktop it runs fine (has 2 other folders with the .exe). However, I just bought a new tc1100 tabletpc (I...
  15. AnonGod

    Query Help - Group By and Where

    Had to modify it just a bit - was pulling duplicate contracts. Updated code: SELECT Main.Contract, Main.Date AS LastDateUsed, Main.OpenQty, Main.OpenPrice FROM Main INNER JOIN (SELECT Main.Contract, Max(Main.Date) AS MaxDate FROM Main GROUP BY Main.Contract) B ON B.MaxDate = Main.Date AND...
  16. AnonGod

    Query Help - Quarterly Sums

    Excellent - Thank you. Works like a charm. I didn't know 'q' was available. Thanks :) -Andrew [Signature modified by admin request] -TAG anongod@hotmail.com 'Drawing on my fine command of language, I said nothing.'
  17. AnonGod

    Query Help - Quarterly Sums

    Hello again - :) This might be a vba only query, but any input is appreciated. Table 'Main': Date Contract TotalTrans Profit 9/28/2005 11/1/2005 111 $12.34 9/29/2005 11/1/2005 222 $56.78 9/30/2005 11/1/2005 333 $90.12 10/3/2005 11/1/2005 999 $98.76 10/4/2005...
  18. AnonGod

    Query Help - Group By and Where

    Excellent - thanks for the code - here's my final code - Works so far... You rock. :) -Andrew SELECT Main.Contract, Main.OpenQty, Main.OpenPrice FROM Main INNER JOIN (SELECT Main.Contract, Max(Main.Date) AS MaxDate FROM Main GROUP BY Main.Contract) B ON B.[MaxDate] = Main.Date WHERE OpenQty...
  19. AnonGod

    Special query

    Just threw this together. Does this help? I just created 2 tables each with a company_id field along with 3 other fields to test. SELECT Table1.*, Table2.* INTO NewTable FROM Table1 INNER JOIN Table2 ON Table1.company_id = Table2.company_id; ALTER TABLE NewTable DROP COLUMN Table2_company_id...
  20. AnonGod

    Query Help - Group By and Where

    TIA for the help :) Having trouble getting my head around how this query should be built. I can do it in vba querying all the contracts, then querying all the latest dates seeing if OpenQty > 0, but I'd really like to have a single query that can return all of it on one shot. Table data...

Part and Inventory Search

Back
Top