I use ZipGenius. it's also free and support also gZip and tar files. Jonathan Slenders
Jonathan Slenders
Posts
-
WinXP and zipped files -
Transfer file between different partitionYes, i use a app called explore2fs. It doesn't work perfect, but in windows you can read 2fs partitions using this application
Look at http://uranus.it.swin.edu.au/~jn/linux/ Jonathan Slenders
-
How do I copy a file and display progress?Hi, thats exactly what i figured out i few days before. I developed a filebrowser. And it also contains a dialog for copying files and it shows the progress. Look to class copydialog of the file clipboard.cs.
Download from www.slenders.be
It also contains examples for moving files, copying folders, etc.
Just take a look
Jonathan Slenders
-
A new open-source filebrowserHi I developed a new open-source filebrowser with c# that i want to share with you. You can download it here: www.slender.be The application runs very nice but contains also some errors. When you are searching for a file. Sometimes i got a thread error. And the progressbar in the move/copy dialog doesn't work very good. I hope you can help me developing this application. (if you don't want helping me, you can always try to use it.) Jonathan Slenders Jonathan Slenders
-
Give a panel a focusThank you very mush
-
Give a panel a focusHow can i make a panel that can receive a focus I used the GotFocus and LostFocus events to turn the panel blue when focussed. But how can i set the CanReceiveFocus Property true so that you can use your keyboard (Tab and arrows) to give that control the focus. (That panel also conatains a picturebox and a label). Thanks Jonathan Slenders
-
Get the true icons of a fileHow can i get the true icons of a file using c#. When someone enters a whole path (which exist) in a textbox. e.g. If it is "c:\tekst1.txt", how can i get the file icon. Here it is a plain text icon. If you enter the path of a ms-word doc. I will get the ms-word icon. Is there some class availible or need i to read the registry entries in the Classes_root. (when the registry refer to a ico-file this is no problem, but most programs refer to an exe-file. Thanks Jonathan Slenders
-
FileAttributesHow can i change the fileattributes of a file (or folder). I will change the Read-only, Hidden, archive,... tags but i can't find it somewhere. It was no problem to change the creation, last access and last written time, but that class (FileInfo and DirectoryInfo) doesn't have anything to change the attributes of it. Can you help me? Jonathan Slenders
-
How to execute a fileThanks But if the filetype is not registered an error occur. Can i view the 'Open With...' dialog
-
Tabpages// The TabControl.SelectedIndex Property works good. Thanks for that. // But i doesnt know how i can do it in another thread. // Now i have created an instance of a class inheritted from the Tabpage. // That class contain a property which refer to a function with the delegate: public delegate void delRemoveTabPage (TabPage tabPage1); // When i create that instance i set the RemoveTabPage property TabPage1.RemoveTabPage += new delRemoveTabPage (RemoveTabpage); // My RemoveTabPage function is these void RemoveTabpage (TabPage tabPage1) { tabCtrlMain1.TabPages.Remove (tabPage1); } // It works (This tabpage disapears but the close butten doesnt work anymore like i said before.) // Well, i have an other possibility but i don't know if this is good: // the TabPage.Hide ( ) method works perfect. And if i add code in the tabpage thad set his childs null i think there will be not mush memory used for thad hidden tabpage. Is this a good method?
-
TabpagesIve some problems with tabpages i have one form with one tabcontrol with one tabpage The first tabpage contain a button. When you click the button a new tabpage will be created and added to the tabcontrol. This works. But the second created tabpage contain a button to for closing that page. I used the next code: ((Tabcontrol)this.parent).Tabpages.remove (this); It works but after i used these code i connot close the form (the close button doesnt work anymore) However a "Application.exit" command in the menus works. Can anyone help me? Ive another problem: When i click the button in the first tabpage, how con i focus the second? I used the tabpage.focus (); command but it doesnt work Jonathan Slenders
-
Windows shortcutsDoes anyone know how i can create a program which can add shortcuts for windows with c#. The program run on background. So if i press a key in windows the program give me a message. Jonathan Slenders
-
Mouse/Key Messages in Windows ServiceI've a similar question. I'm being with a project which can create shortcuts for windows. Is it possible to get a signal if for example the "P" button is pressed Jonathan Slenders
-
Access Linux partitions with windowsIs it possible to access linux partitions with windows. So i can make my own linux ext2 explorer for windows (xp). I always use c# for programming.
Thanks Jonathan Slenders (jonathanslenders@hotmail.com)