thank's alot !!
E_Gold
Posts
-
i have some visual-studio 2008 question -
i have some visual-studio 2008 questionhi 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
-
where i can learn the basic of class - as simple as i can (C#)hi where i can learn the basic of class - as simple as i can (C#) class,get,set,OOP thank's
-
how to get computer IP that connect to my Pocket-PC ?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
-
Looking for any way to transfer file from PPC to PChi 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
-
Is there any free program that lock folder's in windows 7 ?hi Is there any free program that lock folder's in windows 7 ? thank's in advance
-
How to print (and preview) any document - but not with CrystalReportyour project not open on my VS2008 is there any sample code for this ?
-
How to print (and preview) any document - but not with CrystalReporthi 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
-
How to open external program from my C# program (Windows-mobile) ,and give this external program the focus ?hi How to open external program from my C# program (Windows-mobile) , and give this external program the focus ? thank's for any help
-
Is Oracle 10g works on Windows 7 ?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
-
how to open program through C# program and give this program focus - in Windows Mobile ?hi how to open program through C# program and give this program focus - in Windows Mobile ? thank's in advance
-
how to open program through C# program and give this program focus - in Windows Mobile ?hi how to open program through C# program and give this program focus - in Windows Mobile ? thank's in advance
-
some Windows 7 and C# questionhi 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
-
how to open program through C# program and give this program focushi how to open program through C# program and give this program focus ? thank's in advance
-
looking for add-on for visual studio 2008hi 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
-
process problemhi 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(" ");
-
i have problem with end of processhi 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.
-
how to connect crystall report to oracle 10g - in C# (VS2008)hi how i can connect crystall report to oracle 10g in C# (VS2008) ? thank's in advance
-
how to disable BT and WIFI in windows mobile - C#is there a generic solution ? something in the .net ?
-
how to disable BT and WIFI in windows mobile - C#hi how i can disable BT and WIFI in windows mobile, using C# ? can i get sample code for it ? thank's in advance