Guys, I have implementing small academic project can any one let me know some of the Free SMS API's. so that i can use them in my project... please i am trying to do some thing realistic and its a big challenge for me... Thanks in Advance..
Anil Kumar Arvapalli
Posts
-
Free SMS API -
Reading registry keysInclude the required Header Files and then open ur required key RegistryKey Key = Registry.CurrentUser; Once Opening the key open ur sub key as needed.. RegistryKey SubKey = Key.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"); Read the values of sub keys into string (if it is a string else required data type) string str = SubKey.GetValue("AppData").ToString(); Then ur almost done write this str value into file stream, so that ur task is acheived.... If u like my answer.... rate it :)Thanks
-
Want to write a Updater exeI have developed a application and i want to release the first version and then later on i want to relase other components, so iam thinking to write an updater which will continuously checks for newer versions and update the previous version with the newer one.. 1.can any one help me how to start 2.what are the concepts that i need to through, to do this. 3.can i get any samples regading and this... Please help me so that i can be done with my job... Thanks in ADvance...
-
Encrypting FilesI have a sqlite file with me... I want to provide encryption for that file. Can some body let me know how to provide encryption for the db files(other than password) so that i will be full secured and decrypted back. Can it be possible with streams or is there any other techniques to encrypt, Please let me know... Thanks in Advance..:)
-
Custom Pop UP windowsThank.. i solved it and how to set a .bmp skin of forms and perform actions (what iam saying here is i want to add skin for a windows form), please let me know... thanks in advance..
-
Custom Pop UP windowsI want to design a pop up appication , where i want to display it near a system tray, how to get the height and width of the screen so that i have to exactly display in the same location and it should be adjustable to all monitors resolutions(i mean multiple systems).
-
Pop up window (like skype)Hello friends, I need to create a application which sholud pop up near system tray(like skype or g-talk etc), can any one help me how to do this or any links or samples, I googled enough for the day, let me know any thing with u also guys?. Thanks in Advance
-
Threading in C#Thank u...
-
Threading in C#Thanks dude.. I will try it once again.. see all iam doing here is writing the content to stream file form mutliple threads. I spawned 3 threads, they will be writing data into a stream file. I just want to syncronize these three Threads while writing ... Thats all...
-
Threading in C#thanks for ur reply...I have tried it with lock(object) but it is not working... Iam sending my code please go though it once and let me know, where i went wrong. private void Form1_Load(object sender, EventArgs e) { try { sw = new StreamWriter("D:\\Threading.txt"); ThreadStart Thrdst = new ThreadStart(Thread1); Thread t = new Thread(Thrdst); t.Start(); ThreadStart Thrdstt = new ThreadStart(Thread2); Thread tt = new Thread(Thrdstt); tt.Start(); ThreadStart Thrdsttt = new ThreadStart(Thread3); Thread ttt = new Thread(Thrdsttt); ttt.Start(); } catch (Exception err) { label1.Text = err.Message.ToString(); } //Spawnning 3 Threads on form load.. private void Thread1() { Thread1 t1 = new Thread1(); t1.ThreadWriter(sw); } private void Thread2() { Thread2 t2 = new Thread2(); t2.ThreadWriter(sw); } private void Thread3() { Thread3 t3 = new Thread3(); t3.ThreadWriter(sw); } ------------------------------------------------------------------------------------------------------------------------- And i have three diferent clasees which write to text file... class Thread1 { private Object thisLock; public void ThreadWriter(StreamWriter sw) { thisLock = new Object(); lock (this) { for (int i = 0; i < 10; i++) { sw.WriteLine("Thread 1 = " + i); Thread.Sleep(100); } sw.Close(); } } } The other two are almost similar... Output is:- -------------- Thread 1 = 0 Thread 2 = 0 Thread 3 = 0 Thread 1 = 1 Thread 3 = 1 Thread 2 = 1 Thread 1 = 2 Thread 3 = 2 Thread 2 = 2 Thread 1 = 3 Thread 3 = 3 Thread 2 = 3 Thread 1 = 4 Thread 3 = 4 Thread 2 = 4 Thread 1 = 5 Thread 2 = 5 Thread 3 = 5 Thread 1 = 6 Thread 3 = 6 Thread 2 = 6 Thread 1 = 7 Thread 3 = 7 Thread 2 = 7 Thread 1 = 8 Thread 3 = 8 Thread 2 = 8 Thread 1 = 9 Thread 3 = 9 Thread 2 = 9 Please help me out.. Thanks in Advance..
-
Threading in C#Hello Good morning all, I want threading to implemented in C#-windows applications with proper syncroniation. Like i have one textfile(resource) and two threads are acting upon reading and writing, now i want to provide syncrinization to that text file with some technques(critical section, semaphores, mutual exclusion etc). can some one help me out with a sample or link so that i can implement it.. Thanks in Advance :)
-
SkinsThanks Dude ...
-
SkinsGuys, I hope this is the community , where people having experience in developing products, I am a Rookie coming slowly into Industry. I am developing a product for free ware on C#-Windows, I want some skins for better apperance, I googled a lot but no result, Please help me some skins for my UI, or some links. so that my UI looks rich... Thanks in Advance
-
Installing a ExeThanks dude... its worked ... One more thing how to create a desktop shortcut for inatalled location using this deployment...
-
Installing a ExeGuys, I am done with my .exe, now i want to setup the exe through a installer packager and update the same in Add or remove programs in Control Panel, can some body let me know the process.. I googled a lot , no use.. Please help me out...Thank u
-
updating an exe in control panelGuys, I am very naive in Programming, I have a .exe file with me, now i want to build a setup component and install in system, how to update the .exe file in Control panel(Add or Remove compnent). And the same when i want to unistall back from control panel items, what are the thing that i need to do... can some body help me out.. Please.. Thanks in Advance
-
Control Panel EXE UpdationGuys, I am very naive in Programming, I have a .exe file with me, now i want to build a setup component and install in system, how to update the .exe file in Control panel(Add or Remove compnent). And the same when i want to unistall back from control panel items, what are the thing that i need to do... can some body help me out.. Please.. Thanks in Advance
-
Menu Enablingyes dude.. I did the same way u explained... but still the menu item remains disabled.. dont know where i went wrong... :)
-
Menu EnablingWhat i want exactly i have a menu item disabled initially.. ? I have a function which check wheteher a Sotware present in System or not and retruns true/false... If it returns true i have to enable the menu item.. If it retuns false do nothing... Can u explain me how to do this... :)
-
Menu EnablingI have to cal this function to enable menu.. OnUpdateFileExit(?)--- what i have to pass in place of CCmdUI argument... confused void BrowserManager::OnUpdateFileExit(CCmdUI *pCmdUI) { // TODO: Add your command update UI handler code here pCmdUI->Enable ( TRUE ); }