Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
shemayb
Posting Yak Master
159 Posts |
Posted - 2007-08-14 : 13:08:01
|
| Can i place a condition like this if(radiobutton1.checked) in a case statement?Funnyfrog |
|
|
jhermiz
3564 Posts |
Posted - 2007-08-15 : 00:27:08
|
| [code]switch(radiobutton1.checked) { case true: //do something case false: //do something else }[/code]Weblog -- [url]http://weblogs.sqlteam.com/jhermiz[/url] |
 |
|
|
|
|
|