Click here to Skip to main content
15,900,461 members
Home / Discussions / C#
   

C#

 
GeneralRe: prevent new line in DataGrid Pin
Mazdak8-Sep-04 1:47
Mazdak8-Sep-04 1:47 
GeneralRe: prevent new line in DataGrid Pin
BaraaSh8-Sep-04 3:48
BaraaSh8-Sep-04 3:48 
GeneralRe: prevent new line in DataGrid Pin
Heath Stewart8-Sep-04 10:15
protectorHeath Stewart8-Sep-04 10:15 
GeneralGraphics::DrawImage problem Pin
gijoebijoe7-Sep-04 23:19
gijoebijoe7-Sep-04 23:19 
GeneralRe: Graphics::DrawImage problem Pin
mav.northwind8-Sep-04 0:10
mav.northwind8-Sep-04 0:10 
GeneralWH_JOURNALRECORD and WH_JOURNALPLAYBACK Pin
Hadi Fakhreddine7-Sep-04 21:11
Hadi Fakhreddine7-Sep-04 21:11 
Generalweb form divide problem Pin
amalatsliit7-Sep-04 20:12
amalatsliit7-Sep-04 20:12 
GeneralRe: web form divide problem Pin
duaneye20038-Sep-04 0:07
duaneye20038-Sep-04 0:07 
try this:

your web page(test.htm):
<html>
<head>
<title>WebForm1</title>
<script>
function ShowHelp()
{
var height = window.screen.height;
var width = window.screen.width;
var aWidth = width * 3 / 4;
var bWidth = width / 4;
window.moveTo(0,0);
window.resizeTo(aWidth,height);
window.open("Help.htm","Help","top=0,left=" + aWidth + ",height=" + height + ",width=" + bWidth + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
}
</script>
</head>
<body>
<a href="javascript:ShowHelp();">Help</a>
</body>
</html>


your help page(help.htm):
<HTML>
<HEAD>
<title>Help</title>
<script>
function CloseHelp()
{
var height = window.screen.height;
var width = window.screen.width;
window.opener.moveTo(0,0);
window.opener.resizeTo(width,height);
}
</script>
</HEAD>
<body onunload="javascript:CloseHelp();">
</body>
</HTML>

GeneralRe: web form divide problem Pin
PSK_8-Sep-04 1:04
PSK_8-Sep-04 1:04 
GeneralRe: web form divide problem Pin
duaneye20038-Sep-04 15:57
duaneye20038-Sep-04 15:57 
GeneralRe: web form divide problem Pin
amalatsliit8-Sep-04 18:19
amalatsliit8-Sep-04 18:19 
GeneralRe: web form divide problem Pin
PSK_9-Sep-04 0:56
PSK_9-Sep-04 0:56 
GeneralRe: web form divide problem Pin
amalatsliit9-Sep-04 17:25
amalatsliit9-Sep-04 17:25 
GeneralRe: web form divide problem Pin
Nick Parker8-Sep-04 9:51
protectorNick Parker8-Sep-04 9:51 
GeneralFiltering on time in a DataView Pin
WillemM7-Sep-04 20:04
WillemM7-Sep-04 20:04 
QuestionHow could i develop a running-once application Pin
ginee7-Sep-04 19:51
ginee7-Sep-04 19:51 
AnswerRe: How could i develop a running-once application Pin
mav.northwind7-Sep-04 20:37
mav.northwind7-Sep-04 20:37 
AnswerRe: How could i develop a running-once application Pin
Dave Kreskowiak8-Sep-04 7:25
mveDave Kreskowiak8-Sep-04 7:25 
AnswerRe: How could i develop a running-once application Pin
Nick Parker8-Sep-04 9:57
protectorNick Parker8-Sep-04 9:57 
GeneralDrag and Drop Pin
eggie57-Sep-04 17:32
eggie57-Sep-04 17:32 
GeneralRe: Drag and Drop Pin
Corinna John7-Sep-04 19:53
Corinna John7-Sep-04 19:53 
GeneralRe: Drag and Drop Pin
eggie58-Sep-04 2:10
eggie58-Sep-04 2:10 
GeneralCustom Schedule Control Pin
Beringer7-Sep-04 15:57
Beringer7-Sep-04 15:57 
GeneralControl Pin
ImanMahmoud7-Sep-04 15:26
ImanMahmoud7-Sep-04 15:26 
GeneralRe: Control Pin
Charlie Williams7-Sep-04 15:53
Charlie Williams7-Sep-04 15:53 

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.