ok, I'm not certain, but I think I'm being blocked by design.
I found a thread that says robots.txt is blocking me from reading a feed programmatically.
Can anyone confirm this?
Hi,
First of all, I just like to say Thank you to everyone at CG. I love this web site and I use it all the time. I greatly appreciate all the guidance I've received here over the years.
...
Hi all,
We had a huge re-org and thousands of pc's need to have their names changed.
I created 2 exe's that sort of automate the process. There are 2 exe's because the are 2 reboots in the process...
each row in the txt file will contain 1 persons data, and you have to separate it all using a delimiter like a comma (,) or a pipe (|)
each line also ends with a "\n" you can use this as the...
you could use a database instead of a text file to store the data and then just query the db with the info the user supplied
Or
you could read the whole file into an array of strings (one line per...
I prefer to use GetFileAttributes to check the existence of a file.
And cilu's absolutely correct: you should always search CG and Google well before you post. :thumb:
Hi,
my program using NetServerEnum is not getting all of the workstations on the network the MSDN states:
ERROR_MORE_DATA More entries are available. Specify a large enough buffer to receive all...
I'm trying to automate the renaming of hundreds of pc's on a domain.
I've tried using NetRenameMachineInDomain, NetJoinDomain and SetComputerNameEx.
These functions all succeed in the debugger...
use COleDateTime::GetCurrentTime()
and you can Format it to display however you wish, check the msdn for the options
create a control variable for the text box and dump the time as a string into it...
From SQL 2000 Enterprise Manager go to the Tools menu and select replication.
You can also read about replication in the sql help files (Books Online).
If you only have read access to DB1 and DB2...
because you have to use the new command before you delete it
in other words, you created the string on the stack and then delete tries to delete str on the heap which doesn't exist there...
If Unicode is enabled then you won't see the contents of any of the strings in the debugger.
you must add the string to the watch window and then add ,su after it and then
you can see the contents....