|
-
Nov 24th, 2002, 08:15 PM
#1
Thread Starter
Lively Member
tab pages
Im tring to reset the controls on tabpage to there default settings, how do I do this?
-
Nov 24th, 2002, 08:21 PM
#2
umm what do you mean default setting?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 24th, 2002, 08:23 PM
#3
Thread Starter
Lively Member
i guess their original setting before the user changed them
-
Nov 24th, 2002, 08:24 PM
#4
hmm, I;m not sure if there is an easy way to do this. I think you have to write the code for resetting all the textboxes/controls 
edit: well you could do something like this to make it simpler... this is for textboxes, you can add other stuff yourself
VB Code:
Dim ctrl As Control
For Each ctrl In TabControl1.TabPages(0).Controls
If TypeOf ctrl Is TextBox Then
ctrl.Text = ""
End If
Next
Last edited by MrPolite; Nov 24th, 2002 at 08:29 PM.
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 24th, 2002, 08:27 PM
#5
Thread Starter
Lively Member
OK Thanks
I was hoping I wouldnt have to to that
-
Nov 24th, 2002, 08:30 PM
#6
aah sorry to post again, I edited the last post after you posted.... see if that helps
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|