I am trying to build a url to access ms exchange, and some of the folder have spaces. I want the string
"BIS QA EDM Calendar"
to become
"BIS%20QA%20EDM%20Calendar"
I see Server.URLEncode(), but that convert spaces to a plus sign, not %20. Java has a nice URLEncoder class that works great. I...
I want to create the following XML document
<?xml version="1.0" encoding="utf-8" ?>
<root xmlns="http://www.usa.gov" xmlns:minn="http://www.minn.gov">
<Author>
<Name>Joe Johnson</Name>
<minn:Age>47</minn:Age>
</Author>
</root>
The closest I have got is
<?xml version="1.0"...
I have developed a program that monitors a MQ queue, I want the application to be running on the machine in the background. I have installed this on a Windows 2000 Server machine.
So I setup a "scheduled task" to start on system start up. When I start the machine, the application...
On some of my error handlers I am attempting to output to a log file the current values of different of the variables. The problem I have is determining if I have created the object yet. For example
on error goto main_err
dim bob as client
... <a>
set bob = new client
... <b>...
I am creating reports with VB6 and CR8 using RDC. These reports will be run at different locations with different database names. I have successfuly been able to change the database for the main report by using this code:
Const sDevDBName As String = "CSTS_Test_DB"
Dim...
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.