Click here to Skip to main content
15,886,665 members
Home / Discussions / C#
   

C#

 
AnswerRe: running c# program on Linux? Pin
leppie5-Sep-03 10:07
leppie5-Sep-03 10:07 
GeneralMDI problem Pin
r95-Sep-03 9:47
r95-Sep-03 9:47 
GeneralRe: MDI problem Pin
Ray Cassick5-Sep-03 11:52
Ray Cassick5-Sep-03 11:52 
GeneralRe: MDI problem Pin
Anonymous5-Sep-03 13:23
Anonymous5-Sep-03 13:23 
GeneralRe: MDI problem Pin
sumeat10-Sep-03 13:16
sumeat10-Sep-03 13:16 
GeneralDirectory Services .. LDAP Pin
sulmun5-Sep-03 9:06
sulmun5-Sep-03 9:06 
GeneralPlease Wait page while search executes Pin
clayne5-Sep-03 8:38
clayne5-Sep-03 8:38 
GeneralRe: Please Wait page while search executes Pin
GISnet5-Sep-03 9:23
GISnet5-Sep-03 9:23 
Add this to the top of the search page (the one that actually outputs the processing):

<script>

var waitwin ;

function waitwindow()
{
   waitwin = open('',"","width=10,height=10,left=400,top=100,scrollbars=0")
   waitwin.document.open();
   waitwin.resizeTo(1, 1); 
}
</script>


Right when you start processing search, do this:

<script>
   waitwindow();
   waitwin.document.write('< p align="center">Please Wait< /p>');
</script>


when the search ends, output this:

<script>
   waitwin.close();
</script>


Make sure the page is not buffered, or it'll wait until then end and flash everything open and closed at once.
GeneralTreeView + ContextMenu focus issue Pin
efalcao5-Sep-03 8:15
efalcao5-Sep-03 8:15 
GeneralRe: TreeView + ContextMenu focus issue Pin
leppie5-Sep-03 9:54
leppie5-Sep-03 9:54 
GeneralRe: TreeView + ContextMenu focus issue Pin
efalcao5-Sep-03 12:23
efalcao5-Sep-03 12:23 
Questionc# no concept of scope ? Pin
jpribele5-Sep-03 7:58
jpribele5-Sep-03 7:58 
AnswerRe: c# no concept of scope ? Pin
Roger Stewart5-Sep-03 9:10
professionalRoger Stewart5-Sep-03 9:10 
GeneralRe: c# no concept of scope ? Pin
jpribele5-Sep-03 9:16
jpribele5-Sep-03 9:16 
AnswerRe: c# no concept of scope ? Pin
leppie5-Sep-03 9:49
leppie5-Sep-03 9:49 
AnswerRe: c# no concept of scope ? Pin
scadaguy5-Sep-03 9:58
scadaguy5-Sep-03 9:58 
GeneralRe: c# no concept of scope ? Pin
jpribele5-Sep-03 10:10
jpribele5-Sep-03 10:10 
GeneralRe: c# no concept of scope ? Pin
leppie5-Sep-03 22:17
leppie5-Sep-03 22:17 
GeneralRe: c# no concept of scope ? Pin
jpribele8-Sep-03 3:09
jpribele8-Sep-03 3:09 
GeneralRe: c# no concept of scope ? Pin
leppie8-Sep-03 8:25
leppie8-Sep-03 8:25 
GeneralRe: c# no concept of scope ? Pin
scadaguy8-Sep-03 3:28
scadaguy8-Sep-03 3:28 
AnswerRe: c# no concept of scope ? Pin
Rich3335-Sep-03 22:58
sussRich3335-Sep-03 22:58 
GeneralCreate DataTable from XML Schema Pin
Douglas Troy5-Sep-03 7:33
Douglas Troy5-Sep-03 7:33 
GeneralRe: Create DataTable from XML Schema Pin
Mazdak5-Sep-03 7:58
Mazdak5-Sep-03 7:58 
GeneralRe: Create DataTable from XML Schema Pin
Douglas Troy5-Sep-03 8:10
Douglas Troy5-Sep-03 8:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.