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!

Recent content by mp89

  1. mp89

    partitioning hard drive

    Surely if this was the case then it wouldn't be possible to format your hard drive and re-install the OS? Isn't Windows XP once registered linked to that machine and it can be installed on that machine as many times as you want?
  2. mp89

    partitioning hard drive

    I want to format my laptop and partition the hard drive so that I can have Visual Studio 2003 on one partition and the Visual Studio 2005 Beta on the other. I'm wondering whether if I do this and install my copy of Windows XP Pro on both partitions will it complain when I try to register it on...
  3. mp89

    newbie question

    How do I input parameters in a UML diagram? e.g. I have a class called ClassA (by adding a Class object, and a method called MethodA (by adding an Operation), you can add a Return Type, but where are the parameters that are being passed to the Operation? Any help would be really appreciated...
  4. mp89

    split using string as delimiter

    Thanks Marty. Cheers, Mike
  5. mp89

    split using string as delimiter

    How do I do a split on a string using a string as the delimiter i.e. I want to split a string using a country code as the delimiter (e.g. 44, 49, 1, 358 etc). strStartRange = '0' + strStartRange.Split(strCountryCode)[1]; Any help would be really appreciated. Cheers, Mike
  6. mp89

    msxml4.dll

    Found out what I was doing wrong : Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
  7. mp89

    msxml4.dll

    How do I use the library called "Microsoft XML" (msxml4.dll). I want to be able to use this code : Dim req As New MSXML2.xmlhttp req.open "GET", "http://smssrv/sms/aql.php?cmd=credit", False req.send MsgBox req.responseText Any help would be really appreciated. Thanks, Mike
  8. mp89

    App.Major in c#

    Thanks John, Chip! Cheers, Mike
  9. mp89

    App.Major in c#

    What's the C# equivalent of doing this in VB6? Form1.Caption = "Program version " & App.Major & "." & App.Minor & "." & App.Revision Cheers, Mike
  10. mp89

    fetch page and set variables

    Genimuse, I've looked through the tutorial, but my code doesn't work. Can you see what is wrong with it? <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <%...
  11. mp89

    non-UK/US character set

    How do you change the setup of SQL Server to allow foreign characters such as ä, ö, å? Cheers, Mike
  12. mp89

    fetch page and set variables

    I want to fetch a page and set variables without doing a redirect to that page. e.g. in PHP : $url = 'http://smssrv/sms/aql.php'; $req =& new HTTP_Request(); $req->setURL($url); $req->addQueryString('cmd', 'send'); $req->addQueryString('from', $from)...
  13. mp89

    string encryption

    Thanks Obislavu Cheers, Mike
  14. mp89

    string encryption

    With regard to keys, can I use whatever characters I want, or do you need to stick with a certain range of ASCII values? Thanks, Mike
  15. mp89

    string encryption

    Interesting...a bit too advanced for me at the moment, but still interesting! I have one question regarding keys - can I put whatever characters I want into my key or do they need to be within a certain ASCII range? Thanks, Mike

Part and Inventory Search

Back
Top