Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
G

Gali1978

@Gali1978
About
Posts
68
Topics
61
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to make AutoComplete on combobox - windows mobile ?
    G Gali1978

    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

    Mobile database tutorial question

  • how to show battery level on my C# windows-ce program
    G Gali1978

    hi 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

    Mobile csharp tutorial question

  • when i delete my program (in C#) the database still exists - how to delete him ?
    G Gali1978

    thanks for the help ! how to make custom action to my installer ?

    C# csharp database tutorial question

  • what will be with windows-mobile and windows-ce ?
    G Gali1978

    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 ?

    Mobile android business question

  • backup and restore on sql-server-2008
    G Gali1978

    hi 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

    Database database sysadmin question

  • how to make self backup to sql-server-2008 ?
    G Gali1978

    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

    Database database sysadmin help tutorial question

  • How to capture inserting terminal to cradle
    G Gali1978

    hi 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 ?

    Mobile tutorial question

  • how to disable the GotFocus on textbox?
    G Gali1978

    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

    C# tutorial question

  • How to prevent terminal (Windows-CE) from shut-down after 5 minutes
    G Gali1978

    hi How to prevent terminal (Windows-CE) from shut-down after 5 minutes i need the solution in C# code. thanks in advance

    Mobile csharp tutorial

  • how to convert my C# winform program to service program ?
    G Gali1978

    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

    C# csharp tutorial question

  • having problem to translate from WinForm to Windows-CE C# program - FTP transfer
    G Gali1978

    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); } } } thanks in advance

    Mobile csharp sysadmin help

  • having problem to translate from WinForm to Windows-CE C# program - FTP transfer [modified]
    G Gali1978

    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

    C# csharp sysadmin help question

  • hot to transfer from FTP to local directory on my computer in C#
    G Gali1978

    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

    C# csharp sysadmin tutorial question

  • Who gets the priority to access when 2 users try to connect to?
    G Gali1978

    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

    C# database question

  • 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]
    G Gali1978

    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

    Mobile

  • How to work with generic date format
    G Gali1978

    hi 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

    C# tutorial csharp database question

  • How to identify a particular Web site is not active
    G Gali1978

    How to identify a particular Web site is not active ? can i get any C# sample code for this ?

    ASP.NET csharp tutorial question

  • How to identify a particular Web site is not active
    G Gali1978

    How to identify a particular Web site is not active ? can i get any C# sample code for this ?

    Web Development csharp tutorial question

  • looking for regex format
    G Gali1978

    looking for help with regex format i need only numbers with this format: 05######## 0######## and 05#-####### 0#-#######

    C# regex help

  • how to send data to website without open the browser
    G Gali1978

    thanks for the help, i have website that send SMS can i get any sample C# code for how to use HttpWebRequest ? thanks

    C# database tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups