Click here to Skip to main content
16,005,038 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to identify tab key press in vb.net Pin
codelinks31-Mar-08 20:56
codelinks31-Mar-08 20:56 
AnswerRe: how to identify tab key press in vb.net Pin
christoph3331-Mar-08 22:20
christoph3331-Mar-08 22:20 
QuestionHow to create Pdf in windows application? Pin
Piyush Vardhan Singh31-Mar-08 19:18
Piyush Vardhan Singh31-Mar-08 19:18 
AnswerRe: How to create Pdf in windows application? Pin
Mitch F.31-Mar-08 20:16
Mitch F.31-Mar-08 20:16 
GeneralRe: How to create Pdf in windows application? Pin
Piyush Vardhan Singh31-Mar-08 23:19
Piyush Vardhan Singh31-Mar-08 23:19 
GeneralExport Data from datagrid to excel and open it Pin
herag31-Mar-08 16:53
herag31-Mar-08 16:53 
GeneralKeyDown method question Pin
sa_runner31-Mar-08 15:42
sa_runner31-Mar-08 15:42 
GeneralRe: KeyDown method question Pin
nlarson1131-Mar-08 17:09
nlarson1131-Mar-08 17:09 
the 2 forms are completely independent of each other even though you started one from another. event or delegate is the proper way to go.

the event example(done by memory - syntax is mostly good)

public class form1
   private withevents mForm2 as form2

   private sub ChildKeyDown(sChar as string) handles mForm2.ChildKeyDown
      msgbox("the key pressed was: " & sChar
   end sub

   'add logic to show form2
end class

public class form2
    event ChildKeyDown(sChar as string)

    private textbox1_keydown(sender , e ) handles textbox1.keydown
          raiseevent childkeydown(e.keychar)
    end sub
end class


'Never argue with an idiot; they'll drag you down to their level and beat you with experience.' ~ anonymous

'Life's real failure is when you do not realize how close you were to success when you gave up.' ~ anonymous


GeneralRe: KeyDown method question Pin
GuyThiebaut31-Mar-08 23:33
professionalGuyThiebaut31-Mar-08 23:33 
Questionvb.net uploading values, data from application to website Pin
Ismaeel31-Mar-08 15:10
Ismaeel31-Mar-08 15:10 
GeneralRe: vb.net uploading values, data from application to website Pin
Eduard Keilholz31-Mar-08 23:52
Eduard Keilholz31-Mar-08 23:52 
GeneralSaveFileDialog help needed! Pin
jojoStoneHead31-Mar-08 13:54
jojoStoneHead31-Mar-08 13:54 
GeneralRe: SaveFileDialog help needed! Pin
Mitch F.31-Mar-08 14:13
Mitch F.31-Mar-08 14:13 
GeneralRe: SaveFileDialog help needed! Pin
jojoStoneHead31-Mar-08 14:17
jojoStoneHead31-Mar-08 14:17 
GeneralRe: SaveFileDialog help needed! Pin
Mitch F.31-Mar-08 14:27
Mitch F.31-Mar-08 14:27 
GeneralRe: SaveFileDialog help needed! Pin
Luc Pattyn31-Mar-08 14:46
sitebuilderLuc Pattyn31-Mar-08 14:46 
Questionget handlers from existing events in vb in an easy way Pin
christoph3331-Mar-08 3:49
christoph3331-Mar-08 3:49 
GeneralRe: get handlers from existing events in vb in an easy way Pin
MidwestLimey31-Mar-08 7:39
professionalMidwestLimey31-Mar-08 7:39 
AnswerRe: get handlers from existing events in vb in an easy way Pin
christoph3331-Mar-08 20:34
christoph3331-Mar-08 20:34 
GeneralRe: get handlers from existing events in vb in an easy way Pin
christoph3331-Mar-08 23:29
christoph3331-Mar-08 23:29 
GeneralRe: get handlers from existing events in vb in an easy way Pin
MidwestLimey1-Apr-08 5:32
professionalMidwestLimey1-Apr-08 5:32 
GeneralRe: get handlers from existing events in vb in an easy way Pin
christoph331-Apr-08 5:52
christoph331-Apr-08 5:52 
GeneralRe: get handlers from existing events in vb in an easy way Pin
MidwestLimey1-Apr-08 12:00
professionalMidwestLimey1-Apr-08 12:00 
GeneralRe: get handlers from existing events in vb in an easy way Pin
christoph331-Apr-08 20:54
christoph331-Apr-08 20:54 
QuestionExcel VBA for each non-empty row? Pin
devvvy31-Mar-08 3:30
devvvy31-Mar-08 3:30 

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.