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
E

E_Gold

@E_Gold
About
Posts
205
Topics
150
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • i have some visual-studio 2008 question
    E E_Gold

    thank's alot !!

    C# question learning

  • i have some visual-studio 2008 question
    E E_Gold

    hi i have some visual-studio 2008 question 1. is VS2008 can open VS2005 projects ? 2. is it be possible to install VS2008 on mini laptop ? (intel atom, 2G DDR) 3. if VS2008 isnt work, is it take any resource ? thank's in advance

    C# question learning

  • where i can learn the basic of class - as simple as i can (C#)
    E E_Gold

    hi where i can learn the basic of class - as simple as i can (C#) class,get,set,OOP thank's

    C# csharp

  • how to get computer IP that connect to my Pocket-PC ?
    E E_Gold

    hi how to get computer IP that connect to my Pocket-PC ? i need to see this IP in my Pocket-PC. i work on VS2008 C# Windows-mobile thank's in advance

    Mobile csharp tutorial question

  • Looking for any way to transfer file from PPC to PC
    E E_Gold

    hi i looking for any way to transfer file from PPC to PC - and from PC to PPC , i dont want to use WebService, and if i use RAPI i need that in the PC will be any program - and i dont want (i dont want that in the PC will be any of my program) how i can do it (in C#) ? thank's in advance

    Mobile csharp question

  • Is there any free program that lock folder's in windows 7 ?
    E E_Gold

    hi Is there any free program that lock folder's in windows 7 ? thank's in advance

    Windows API question

  • How to print (and preview) any document - but not with CrystalReport
    E E_Gold

    your project not open on my VS2008 is there any sample code for this ?

    C# csharp tutorial question

  • How to print (and preview) any document - but not with CrystalReport
    E E_Gold

    hi How to print (and preview) any document - but not with CrystalReport (working on VS2008 - C#) ex. i have 6 val's in my C# program that i want to print (and preview) how i can do it ? thank's in advance

    C# csharp tutorial question

  • How to open external program from my C# program (Windows-mobile) ,and give this external program the focus ?
    E E_Gold

    hi How to open external program from my C# program (Windows-mobile) , and give this external program the focus ? thank's for any help

    C# csharp help tutorial question

  • Is Oracle 10g works on Windows 7 ?
    E E_Gold

    hi i try to install Oracle 10g on Windows 7 - but in the installation i get error: "the procedure entry point GetProcessImageFileNameW could not be located in the dynamic library PSAPI.DLL. " thank's for any help

    Database help oracle question

  • how to open program through C# program and give this program focus - in Windows Mobile ?
    E E_Gold

    hi how to open program through C# program and give this program focus - in Windows Mobile ? thank's in advance

    Mobile csharp tutorial question

  • how to open program through C# program and give this program focus - in Windows Mobile ?
    E E_Gold

    hi how to open program through C# program and give this program focus - in Windows Mobile ? thank's in advance

    C# csharp tutorial question

  • some Windows 7 and C# question
    E E_Gold

    hi i have some C# and Windows 7 question 1. is all my C# program will work ? 2. is the color of my C# program will change ? 3. what i need to know about iis7 ? is my WebService will work good ? thank's in advance

    C# question csharp

  • how to open program through C# program and give this program focus
    E E_Gold

    hi how to open program through C# program and give this program focus ? thank's in advance

    C# csharp tutorial question

  • looking for add-on for visual studio 2008
    E E_Gold

    hi i know that there are many add-on's for visual studio 2008, i need recommendation for good and useful tools (from yours experience) thank's for any help

    C# csharp visual-studio tools help

  • process problem
    E E_Gold

    hi after i unzip file and try to copy him, i get error process is used by another program what can be the problem ? (work on WinForm - C#)

    ZipInputStream sampleInputStream = new ZipInputStream(File.OpenRead(UnZIP_ZipFile));
    ZipEntry sampleFile = null;
    string sampleOutputDirectoy = UnZIP_RegFile;
    int sampleSize = 2048;
    sampleInputStream.Password = "12345";
    while ((sampleFile = sampleInputStream.GetNextEntry()) != null)
    {
    sampleSize = 2048;
    if (Path.GetFileName(sampleFile.Name) != string.Empty)
    {
    string sampleFilePath = sampleOutputDirectoy + @"\" + sampleFile.Name;
    FileStream sampleFileStream = File.Create(sampleFilePath);
    byte[] sampleFileData = new byte[sampleSize];
    while (true)
    {
    sampleSize = sampleInputStream.Read(sampleFileData, 0, sampleFileData.Length);
    if (sampleSize > 0)
    sampleFileStream.Write(sampleFileData, 0, sampleSize);
    else
    break;
    }
    sampleFileStream.Close();
    sampleFileStream.Dispose();
    }

            }
            sampleInputStream.Close();
            sampleInputStream.Dispose();
            MessageBox.Show(" ");
    
    C# help csharp question

  • i have problem with end of process
    E E_Gold

    hi i have problem with end of process. i need to zip file - and after i zip - i need to do some thing with this zip file... the problem is, although the messagebox appear - i noticed that the process is not end. how i can know for sure that the process is end ? my zip sample: try{ if (File.Exists(@"c:\DaZIP\Bind.sdf")) File.Delete(@"c:\DaZIP\Bind.sdf"); File.Copy(Application.StartupPath + @"\Bind.sdf", @"c:\DaZIP\Bind.sdf"); byte[] sampleBuffer = null; ZipEntry sampleZipFile = null; FileStream sampleFileStream = null; ZipOutputStream sampleOutputStream = new ZipOutputStream(File.Create(Application.StartupPath + @"\Bind.zip")); sampleOutputStream.Password = "12345"; sampleOutputStream.SetLevel(9); foreach (string sampleFile in Directory.GetFiles(@"c:\DaZIP")) { sampleZipFile = new ZipEntry(Path.GetFileName(sampleFile)); sampleOutputStream.PutNextEntry(sampleZipFile); sampleFileStream = File.OpenRead(sampleFile); sampleBuffer = new byte[sampleFileStream.Length]; sampleFileStream.Read(sampleBuffer, 0, sampleBuffer.Length); sampleOutputStream.Write(sampleBuffer, 0, sampleBuffer.Length); } sampleOutputStream.Finish(); sampleOutputStream.Close(); } catch (Exception ex){ MessageBox.Show(ex.Message ,"",0, MessageBoxIcon.Exclamation); return;} MessageBox.Show("End ZIP"); i work on VS2008 C# WinForm i know that the process still work, because when i try to do somthing with the zip file, i get error that the file is in use. and if i wait for 1-2 minute, i can do what i want with this zip file.

    C# help csharp question

  • how to connect crystall report to oracle 10g - in C# (VS2008)
    E E_Gold

    hi how i can connect crystall report to oracle 10g in C# (VS2008) ? thank's in advance

    C# csharp oracle tutorial question

  • how to disable BT and WIFI in windows mobile - C#
    E E_Gold

    is there a generic solution ? something in the .net ?

    C# csharp tutorial question

  • how to disable BT and WIFI in windows mobile - C#
    E E_Gold

    hi how i can disable BT and WIFI in windows mobile, using C# ? can i get sample code for it ? thank's in advance

    Mobile csharp tutorial question
  • Login

  • Don't have an account? Register

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