Click here to Skip to main content
15,900,258 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Global Variable Pin
ozzyrocsdbn20-Jun-07 22:38
ozzyrocsdbn20-Jun-07 22:38 
GeneralRe: Global Variable Pin
Brady Kelly20-Jun-07 22:46
Brady Kelly20-Jun-07 22:46 
AnswerRe: Global Variable Pin
vims25-Jun-07 21:53
vims25-Jun-07 21:53 
QuestionImport / Export of data from an Excel Sheet Pin
Siddhartha S.20-Jun-07 20:45
Siddhartha S.20-Jun-07 20:45 
QuestionButton control Pin
dodoxor20-Jun-07 20:14
dodoxor20-Jun-07 20:14 
AnswerRe: Button control Pin
Manas Bhardwaj22-Jun-07 5:08
professionalManas Bhardwaj22-Jun-07 5:08 
QuestionRe: Button control Pin
dodoxor22-Jun-07 21:19
dodoxor22-Jun-07 21:19 
AnswerRe: Button control Pin
Manas Bhardwaj23-Jun-07 2:07
professionalManas Bhardwaj23-Jun-07 2:07 
dodoxor wrote:
when you are on a button,(like start button of windows xp) a yellow rectangle with a help description is shown. How can i do this?


This piece of code should do for you :

private void startButton_MouseHover(object sender, System.EventArgs e)<br />
		{<br />
			startButton.BackColor = Color.Yellow;<br />
			ToolTip toolTip = new ToolTip();<br />
			toolTip.ShowAlways = true;<br />
			toolTip.SetToolTip(startButton, "Whatever Message...");<br />
			<br />
		}

AnswerRe: Button control Pin
dodoxor23-Jun-07 21:40
dodoxor23-Jun-07 21:40 
AnswerRe: Button control Pin
vims25-Jun-07 21:58
vims25-Jun-07 21:58 
QuestionCheckbox column problem Pin
jimbaloo20-Jun-07 3:46
jimbaloo20-Jun-07 3:46 
Questionbackgroundworker with typed dataset binding Pin
mcdonamw19-Jun-07 17:22
mcdonamw19-Jun-07 17:22 
QuestionPrinting a Form -&gt; Texbox is emty :( Pin
gant11219-Jun-07 4:47
gant11219-Jun-07 4:47 
AnswerRe: Printing a Form -&gt; Texbox is emty :( Pin
atulonweb@hotmail.com20-Jun-07 23:52
atulonweb@hotmail.com20-Jun-07 23:52 
QuestionFolderBorserDialog for images Pin
dodoxor18-Jun-07 21:29
dodoxor18-Jun-07 21:29 
AnswerRe: FolderBorserDialog for images Pin
Giorgi Dalakishvili18-Jun-07 22:57
mentorGiorgi Dalakishvili18-Jun-07 22:57 
AnswerRe: FolderBorserDialog for images Pin
dodoxor18-Jun-07 23:02
dodoxor18-Jun-07 23:02 
Questionhow change specific row back color in DataGrid? Pin
zeroonea17-Jun-07 20:51
zeroonea17-Jun-07 20:51 
AnswerRe: how change specific row back color in DataGrid? Pin
ozzyrocsdbn17-Jun-07 21:27
ozzyrocsdbn17-Jun-07 21:27 
GeneralRe: how change specific row back color in DataGrid? Pin
zeroonea17-Jun-07 21:51
zeroonea17-Jun-07 21:51 
GeneralRe: how change specific row back color in DataGrid? Pin
RepliCrux18-Jun-07 14:20
RepliCrux18-Jun-07 14:20 
GeneralRe: how change specific row back color in DataGrid? Pin
zeroonea18-Jun-07 19:09
zeroonea18-Jun-07 19:09 
GeneralRe: how change specific row back color in DataGrid? Pin
RepliCrux18-Jun-07 19:10
RepliCrux18-Jun-07 19:10 
AnswerRe: how change specific row back color in DataGrid? Pin
Stu Richardson20-Jun-07 6:30
Stu Richardson20-Jun-07 6:30 
QuestionUITypeEditor and Factory Creation Pin
Paul Selormey17-Jun-07 15:21
Paul Selormey17-Jun-07 15:21 

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.