Hi Phil I Live in South Africa,Cape Town and currently im using nokia E72. My connectivity is MTN and CellC. My best recommendation MTN-3G,they have Data Bundles which don't cost that much depending on your consumption.The reason is MTN-3G is very fast and im happy with it. I Hope this help. M.Paige
Mninawa
Posts
-
Connectivity in South Africa -
Checking file longer than 1 hourHello Everyone I need someone who can help me.I want to check the oldest file in the directory, and if that file is older than one hour then send an alert. Here is my current work.
for (int index = 0; index < files.Length; index++)//Loop through the file. { string lastMTime = File.GetLastAccessTime(files\[index\]).ToString("ddMMyyymmss");//Get the last modified file by date. files\[index\] = lastMTime + files\[index\];//Shuffle the array } Array.Sort(files);//Sort the array string oldFile = Path.GetFileName(files\[0\].Substring(15));//Get the old file. if(File.GetCreationTime(oldFile))// this is where i am stuck.....
if(File.GetCreationTime(oldFile))// this is where i am stuck.....
Please my code project peeps, help me out.... Thank you all in Advance Marvel... -
Regex for MM/YYYY date formatThanx Buddy you have saved my day. Mninawa
-
Regex for MM/YYYY date formatHi Guys, Can someone help me,i need help with Regex.I want to validate a date in this format MM/YYYY,thus 02/2009, Regards Mninawa
-
Executing Java Object in C#Hi Steve,thanx for your help. On that not you are quite right,In the documentations for JVM,this is how you would execute .jar file,but now what i have is the combination of libraries,which makes up an application caller,which is that cmdParam, well i have to find a way to execute them in C# and I thought using this way would solve the problem. I thought one might have a solution besides the one in did,because i have to do them that way. Mninawa
-
Executing Java Object in C#I have this task, i need to call a Java Application using a web-service call.I need to know if someone has a clue on how to do that,so far this is my attempt.
string cmd ="C:\Program Files\Java\jre1.6.0\bin\Java.exe";
//We use this command to invoke or start the java application which take argument infront.string cmdParams="java -Xms32m -Xmx1g -Djava.library.path=d:\cep\col\sql -classpath d:\cep\col\commons-net-1.4.1.jar;d:\cep\col\commons-codec-1.3.jar;d:\cep\col\sql\sqljdbc.jar;d:\cep\col\DialogInput.jar za.co.lightWave.control.DialogInputControl";
using (Process process = Process.Start(new ProcessStartInfo(cmd, cmdParams)))
{process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError= true; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; process.Start(); process.WaitForExit(timeout); return process.ExitCode; }
I need to know what is an effective way of executing that command,what i have currently is
java.lang.NoClassDefFoundError: java Exception in thread "main"
Thank you in advance Mninawa