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 TouchToneTommy 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: mp89
  • Order by date
  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
  16. mp89

    string encryption

    I need a way of encrypting strings that provides a fairly high level of encryption. I've looked at System.Security.Cryptography at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemsecuritycryptography.asp, but there are so many different algorithms I don't...
  17. mp89

    instantiating class

    Found the solution - setting the class to null when it is declared. Mike
  18. mp89

    instantiating class

    I am instantiating a class in a switch statement as there are a number of different overloads depending upon the data entered by the user. The problem I have is that after instantiating my class, when I try to call methods in the class later on in my code using the same object I cannot, I get...
  19. mp89

    generating random numbers

    I have a method that I am using to generate random numbers using Random.Next. However, every time I call the method I get the same random number. Is there a C# equivalent of Randomize is VB6? Thanks, Mike
  20. mp89

    @SQLParam Null?

    Am I missing something here...if you have a datetime field that allows nulls and insert a record into it without passing a value to the datetime field it will be set to null anyway. Why would you want to set a default value for a field that in some circumstances needs to be set to null, surely...

Part and Inventory Search

Back
Top