Hi how to make AutoComplete on combobox - windows mobile ? I have database that bind to combobox, i need that when i start to type any word on this combobox i'll see AutoComplete thanks in advance
Gali1978
Posts
-
how to make AutoComplete on combobox - windows mobile ? -
how to show battery level on my C# windows-ce programhi i need to show battery level on my C# windows-ce program how i can do it ? without harm my program preforms ? thanks in advance
-
when i delete my program (in C#) the database still exists - how to delete him ?thanks for the help ! how to make custom action to my installer ?
-
what will be with windows-mobile and windows-ce ?hi what will be with windows-mobile and windows-ce ? i see many new terminals from motorola...datalogic...and more for the business sector that came with Windows-CE 6.0 and Windows-Mobile 6.5 but in Visual-Studio 2010 there isn't any support for this. i don't see any business terminal that work with windows-phone-7. is the windows-mobile and windows-ce is dead ? is this the time to start work with android ? what microsoft plans to do ?
-
backup and restore on sql-server-2008hi is there any way to make backup to database on sql-server-2008 in one button press ? and any way to make restore to database on sql-server-2008 in one button press ? any idea ? or direction ? thanks in advance
-
how to make self backup to sql-server-2008 ?hi how to make self backup to sql-server-2008 ? i need that backup every 2 hours and if the database is in work - it will be a problem ? thanks in advance
-
How to capture inserting terminal to cradlehi How to capture inserting terminal to cradle and make this tests? i need to check 3 things: 1. if the terminal is in the cradle 2. if i got IP 3. if there is connection to my WebService and after this, i need to transfer data between my WebService to the terminal (Windows-mobile 6.5) how i can do it ?
-
how to disable the GotFocus on textbox?i have textbox that do something on GotFocus. how i can disable the GotFocus on this textbox ? and how to enable it back ? thanks in advance
-
How to prevent terminal (Windows-CE) from shut-down after 5 minuteshi How to prevent terminal (Windows-CE) from shut-down after 5 minutes i need the solution in C# code. thanks in advance
-
how to convert my C# winform program to service program ?hi how to convert my C# winform program to service program ? i need that my program will work like service (like listener) thanks in advance
-
having problem to translate from WinForm to Windows-CE C# program - FTP transferhaving problem to translate from WinForm to Windows-CE C# program - FTP transfer i have this code for transfer from Local computer to FTP server its work excellent on WinForm, i must have this on Windows-CE and it dosnt work the code: string MyFile = @"d:\PC.sdf"; string url = "ftp://127.0.0.1/PC.sdf"; FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(url); request.Method = WebRequestMethods.Ftp.UploadFile; //request.Credentials = new NetworkCredential("user name", "password"); request.UsePassive = true; request.UseBinary = true; request.KeepAlive = false; //byte[] buffer = File.ReadAllBytes(MyFile); using (Stream reqStream = request.GetRequestStream()) { int count = 0; byte[] buffer = new byte[100]; using (FileStream file = new FileStream(MyFile, FileMode.Open)) { while ((count = file.Read(buffer, 0, 100)) > 0) { reqStream.Write(buffer, 0, count); } } } thanks in advance
-
having problem to translate from WinForm to Windows-CE C# program - FTP transfer [modified]having problem to translate from WinForm to Windows-CE C# program - FTP transfer i have this code for transfer from Local computer to FTP server its work excellent on WinForm, i must have this on Windows-CE and it dosnt work the code:
string MyFile = @"d:\PC.sdf";
string url = "ftp://127.0.0.1/PC.sdf"; FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(url); request.Method = WebRequestMethods.Ftp.UploadFile; //request.Credentials = new NetworkCredential("user name", "password"); request.UsePassive = true; request.UseBinary = true; request.KeepAlive = false; //byte\[\] buffer = File.ReadAllBytes(MyFile); using (Stream reqStream = request.GetRequestStream()) { int count = 0; byte\[\] buffer = new byte\[100\]; using (FileStream file = new FileStream(MyFile, FileMode.Open)) { while ((count = file.Read(buffer, 0, 100)) > 0) { reqStream.Write(buffer, 0, count); } } }
in WinCE there isnt FtpWebRequest or FtpWebRequest i think that i need to use OpenNetCF ???? can i get any C# sample code for this ?
modified on Friday, August 12, 2011 6:08 AM
-
hot to transfer from FTP to local directory on my computer in C#i have FTP server in my computer (Windows-7) called MyFTP i have thit code to transfer from local directory to FTP server this code work excellent string MyFile = @"d:\Test.txt"; //string url = "ftpUrl/FileName"; string url = "ftp://127.0.0.1/Test.txt"; FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(url); request.Method = WebRequestMethods.Ftp.UploadFile; //request.Credentials = new NetworkCredential("user name", "password"); request.UsePassive = true; request.UseBinary = true; request.KeepAlive = false; byte[] buffer = File.ReadAllBytes(MyFile); using (Stream reqStream = request.GetRequestStream()) { reqStream.Write(buffer, 0, buffer.Length); } and now i need to to transfer from FTP server to local directory in my computer how to do it ?
modified on Thursday, August 11, 2011 5:11 PM
-
Who gets the priority to access when 2 users try to connect to?if 2 users connect to access and run query that check the last number increase this number and insert record to database. Who gets the priority ? why i see 2 duplicate records with the same number ? thanks in advance
-
looking for solution, if i dont press any key or touch the screen for 2 minutes on windows-mobile - i need to return to LogIn screen [modified]looking for solution, if i dont press any key or touch the screen for 2 minutes on windows-mobile i need to return to LogIn screen (from any screen of my program). thanks in advance
modified on Saturday, August 6, 2011 4:42 AM
-
How to work with generic date formathi i have C# program that work with access database. (i have datetime field in access - Short Date) How to make sure that the program will not crash with the wrong date format ? for example: in my computer the date in this format: dd/MM/yyyy and if i run my program on computer that has this format: MM/dd/yyyy the program will crash or will show me abnormal result is there any generic solution ? can i get any C# code for this ? thanks in advance
-
How to identify a particular Web site is not activeHow to identify a particular Web site is not active ? can i get any C# sample code for this ?
-
How to identify a particular Web site is not activeHow to identify a particular Web site is not active ? can i get any C# sample code for this ?
-
looking for regex formatlooking for help with regex format i need only numbers with this format: 05######## 0######## and 05#-####### 0#-#######
-
how to send data to website without open the browserthanks for the help, i have website that send SMS can i get any sample C# code for how to use HttpWebRequest ? thanks