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]
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]
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...
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...
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...
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]
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]
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...
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.'
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...
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.'
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...
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...
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...
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...
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.'
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.