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 wOOdy-Soft 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: mookie
  • Content: Threads
  • Order by date
  1. mookie

    URL Encoding with c#

    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...
  2. mookie

    Create an XML document with multiple namespaces

    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"...
  3. mookie

    Java dying when user logs off machine

    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 &quot;scheduled task&quot; to start on system start up. When I start the machine, the application...
  4. mookie

    Set focus in the datagrid

    How would I set the focus to the first textbox in the selected row of the datagrid?
  5. mookie

    How to tell if an object has been created

    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>...
  6. mookie

    Changing database of a sub-report at runtime

    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 = &quot;CSTS_Test_DB&quot; Dim...

Part and Inventory Search

Back
Top