- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
3 Posted Topics
Re: IF you are not using any additional threads besides the main thread. Try adding [code]this.Refresh();[/code] if you are using multiple threads try: [code] private delegate void refresh_delegate(); private void refeshWindow() { if (this.InvokeRequired) //invoke to main thread { object[] args = null; this.Invoke(new refresh_delegate(this.refeshWindow),args); return; } this.refresh(); } then jsut … | |
Re: [code] folderDialog.Description = "Select Folder"; folderDialog.ShowDialog(); if (folderDialog.SelectedPath != string.Empty) txtTargetPath.Text = folderDialog.SelectedPath; [/code] | |
Re: [quote=matika]hiii all do any1 knows how to read the header of a file to know its format as example if i've a mp3 file but it's name do not include .mp3 i wanna make a program that read the header of the file and detect it's format but i dont … |
The End.