Click here to Skip to main content
15,920,596 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: add reply to the next node Pin
ChandraRam3-Jun-08 1:27
ChandraRam3-Jun-08 1:27 
AnswerRe: add reply to the next node Pin
Anubhava Dimri3-Jun-08 21:10
Anubhava Dimri3-Jun-08 21:10 
QuestionCrystal Report Pin
sathyan_82942-Jun-08 23:21
sathyan_82942-Jun-08 23:21 
AnswerRe: Crystal Report Pin
ChandraRam3-Jun-08 1:25
ChandraRam3-Jun-08 1:25 
AnswerRe: Crystal Report Pin
Rupesh Kumar Swami3-Jun-08 2:55
Rupesh Kumar Swami3-Jun-08 2:55 
AnswerRe: Crystal Report Pin
Anubhava Dimri6-Jun-08 0:26
Anubhava Dimri6-Jun-08 0:26 
QuestionCombobox events in a DataGridView Pin
iJuan2-Jun-08 23:00
iJuan2-Jun-08 23:00 
AnswerRe: Combobox events in a DataGridView Pin
paas3-Jun-08 2:48
paas3-Jun-08 2:48 
You might want to take a look at the grids CurrentCellDirtyStateChanged and CellValueChanged events. The CurrentCellDirtyStateChanged event triggers as soon as any change is made in a cell, although the actual new value of the cell is not "known" in that event. The CellValueChanged event triggers as soon as the user exits a modified cell, and the changed value of the cell is known in that event. I've done some crazy stuff in the past where I've programitically moved off a cell when the CurrentCellDirtyStateChanged event triggers, captured its new value via the CellValueChanged event, and then programtically returned to the cell. You can get the new value of the cell in the CellValueChanged event with code similar to the following:

NewValue = dataGridView1.CurrentRow.Cells(e.ColumnIndex).Value.ToString()
QuestionSet two Different print area in excel 2007 sheet using vb.net Pin
~Khatri Mitesh~2-Jun-08 22:40
~Khatri Mitesh~2-Jun-08 22:40 
QuestionWhat type of value return when using format(now(),"hh:mm:ss") in VB6? Pin
cocoonwls2-Jun-08 21:27
cocoonwls2-Jun-08 21:27 
AnswerRe: What type of value return when using format(now(),"hh:mm:ss") in VB6? Pin
~Khatri Mitesh~3-Jun-08 1:27
~Khatri Mitesh~3-Jun-08 1:27 
GeneralRe: What type of value return when using format(now(),"hh:mm:ss") in VB6? Pin
cocoonwls3-Jun-08 18:48
cocoonwls3-Jun-08 18:48 
Question[Message Deleted] Pin
bbalaji7feb2-Jun-08 20:39
bbalaji7feb2-Jun-08 20:39 
AnswerCross Post Pin
dan!sh 2-Jun-08 20:44
professional dan!sh 2-Jun-08 20:44 
QuestionProblem with VB.NET using MySql .NET Connector Pin
drexler_kk2-Jun-08 19:00
drexler_kk2-Jun-08 19:00 
AnswerRe: Problem with VB.NET using MySql .NET Connector Pin
drexler_kk4-Jun-08 21:32
drexler_kk4-Jun-08 21:32 
Generalsql editor inside the vb.net application Pin
xybroxymoron2-Jun-08 17:13
xybroxymoron2-Jun-08 17:13 
GeneralCP IGNORE Pin
leckey2-Jun-08 17:29
leckey2-Jun-08 17:29 
QuestionCopy html with VB Pin
Harold_Wishes2-Jun-08 10:18
Harold_Wishes2-Jun-08 10:18 
AnswerRe: Copy html with VB Pin
jzonthemtn2-Jun-08 12:53
jzonthemtn2-Jun-08 12:53 
QuestionUsing net send in VB.net Pin
Charles Hardy2-Jun-08 10:09
Charles Hardy2-Jun-08 10:09 
AnswerRe: Using net send in VB.net Pin
jzonthemtn3-Jun-08 11:41
jzonthemtn3-Jun-08 11:41 
GeneralRe: Using net send in VB.net Pin
Charles Hardy5-Jun-08 6:06
Charles Hardy5-Jun-08 6:06 
GeneralRe: Using net send in VB.net Pin
jzonthemtn5-Jun-08 6:12
jzonthemtn5-Jun-08 6:12 
GeneralRe: Using net send in VB.net Pin
Charles Hardy5-Jun-08 8:14
Charles Hardy5-Jun-08 8:14 

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.