User Profile

Collapse

Profile Sidebar

Collapse
myrrdin
myrrdin
Last Activity: Oct 25 '07, 11:34 PM
Joined: May 5 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • myrrdin
    replied to SMS[c#]
    in .NET
    A quick google Search for "send a sms to a mobile from C# application" came up with
    [HTML]http://www.dotnetspide r.com/kb/Article2974.asp x[/HTML] as the first result. This should get you on the right track....
    See more | Go to post

    Leave a comment:


  • myrrdin
    replied to how to call a java method from c# code
    in .NET
    Assuming you want to use Java and not Javascript you can use J# in your C# code. Just add a reference to vjslib.dll in your project. Once you have done this you can include standard java libraries by doing
    Code:
    using java;
    using java.io;
    ...
    See more | Go to post

    Leave a comment:


  • myrrdin
    replied to Send Email Message using C#
    in .NET
    What line is it throwing the error on?
    See more | Go to post

    Leave a comment:


  • myrrdin
    replied to Reading XML in C# .NET
    in .NET
    Try something like this using the XmlDocument to allow for DOM style parsing.
    Code:
    XmlTextReader reader = new XmlTextReader("XXX.xml");
                XmlDocument xDoc = new XmlDocument();
                xDoc.Load(reader);
                foreach (XmlNode eventNode in xDoc.ChildNodes)
                {
                    // Read the EventNode's children elements
                }
    Alternatively you could try...
    See more | Go to post

    Leave a comment:


  • Try using the Access Date method in your query

    select * from tablename where datefield<=Date ('' & textbox3.text & "')"
    See more | Go to post

    Leave a comment:


  • myrrdin
    replied to Loading dll at run-time
    in .NET
    I am not 100% sure as to how it is done but what you want to do sounds like it can be done with Reflection which if I remeber correctly is in the System.Reflecti on namespace.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...