Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #44.2K
Ranked #4K
~799 People Reached
Favorite Forums
Favorite Tags
c# x 1

3 Posted Topics

Member Avatar for asmith3006

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 …

Member Avatar for asmith3006
0
128
Member Avatar for protos1

[code] folderDialog.Description = "Select Folder"; folderDialog.ShowDialog(); if (folderDialog.SelectedPath != string.Empty) txtTargetPath.Text = folderDialog.SelectedPath; [/code]

Member Avatar for plazmo
0
398
Member Avatar for matika

[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 …

Member Avatar for tayspen
1
273

The End.