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....
User Profile
Collapse
-
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;
Leave a comment:
-
-
Try something like this using the XmlDocument to allow for DOM style parsing.
Alternatively you could try...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 }Leave a comment:
-
Try using the Access Date method in your query
select * from tablename where datefield<=Date ('' & textbox3.text & "')"Leave a comment:
-
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.Leave a comment:
No activity results to display
Show More
Leave a comment: