Click here to Skip to main content
15,919,245 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Set Printer Stapling Pin
Dave Kreskowiak24-Feb-04 5:48
mveDave Kreskowiak24-Feb-04 5:48 
GeneralRe: Set Printer Stapling Pin
Edbert P24-Feb-04 10:59
Edbert P24-Feb-04 10:59 
QuestionEmail "To" functionality - how to do? Pin
Malcolm Green23-Feb-04 19:19
Malcolm Green23-Feb-04 19:19 
AnswerRe: Email "To" functionality - how to do? Pin
Dave Kreskowiak24-Feb-04 5:50
mveDave Kreskowiak24-Feb-04 5:50 
QuestionHow to make the form moveable? Pin
younghand23-Feb-04 16:23
younghand23-Feb-04 16:23 
AnswerRe: How to make the form moveable? Pin
Dave Kreskowiak23-Feb-04 18:15
mveDave Kreskowiak23-Feb-04 18:15 
QuestionHow to use CallByName function in VB.NET Pin
bqdieu23-Feb-04 16:16
bqdieu23-Feb-04 16:16 
AnswerRe: How to use CallByName function in VB.NET Pin
Dave Kreskowiak23-Feb-04 17:59
mveDave Kreskowiak23-Feb-04 17:59 
CallByName lets you call a Function or manipulate a Property on an object, such as a TextBox or other class:
CallByName(TextBox1, "Text", CallType.Set, "New Text")
 
CallByName(TextBox1, "Hide", CallType.Method)
 
Dim col As New Collection()
'  Store the string "Item One" in a collection by 
'  calling the Add method.
CallByName(col, "Add", CallType.Method, "Item One")
'  Retrieve the first entry from the collection using the 
'  Item property and display it using MsgBox().
MsgBox(CallByName(col, "Item", CallType.Get, 1))

The down side to using the CallByName function is that it is very slow. There is also no type checking of arguments, so handling errors properly becomes a bit of a pain.


RageInTheMachine9532
Generalmy two simple problems Pin
bensoncd23-Feb-04 11:22
bensoncd23-Feb-04 11:22 
GeneralRe: my two simple problems Pin
Ian Darling23-Feb-04 11:30
Ian Darling23-Feb-04 11:30 
GeneralSetting a Leap year condition Pin
bensoncd23-Feb-04 11:20
bensoncd23-Feb-04 11:20 
GeneralRe: Setting a Leap year condition Pin
Ian Darling23-Feb-04 11:27
Ian Darling23-Feb-04 11:27 
GeneralFormatting numbers Pin
erikkloeze23-Feb-04 5:05
erikkloeze23-Feb-04 5:05 
GeneralRe: Formatting numbers Pin
Hesham Amin23-Feb-04 7:50
Hesham Amin23-Feb-04 7:50 
GeneralRe: Formatting numbers Pin
erikkloeze23-Feb-04 8:55
erikkloeze23-Feb-04 8:55 
GeneralRe: Formatting numbers Pin
Nadroj24-Feb-04 12:12
Nadroj24-Feb-04 12:12 
GeneralSome guidance required Pin
Asad Hussain23-Feb-04 4:16
Asad Hussain23-Feb-04 4:16 
GeneralRe: Some guidance required Pin
steff kamush23-Feb-04 4:26
steff kamush23-Feb-04 4:26 
GeneralRe: Some guidance required Pin
steff kamush23-Feb-04 4:34
steff kamush23-Feb-04 4:34 
GeneralRe: Some guidance required Pin
Asad Hussain23-Feb-04 4:46
Asad Hussain23-Feb-04 4:46 
GeneralRe: Some guidance required Pin
Ian Darling23-Feb-04 5:04
Ian Darling23-Feb-04 5:04 
GeneralRe: Some guidance required Pin
Asad Hussain23-Feb-04 7:46
Asad Hussain23-Feb-04 7:46 
GeneralInter-Application Communication Pin
NaserAbiat22-Feb-04 23:52
NaserAbiat22-Feb-04 23:52 
GeneralHelp!! About Datagrid Pin
March Tu22-Feb-04 21:15
March Tu22-Feb-04 21:15 
GeneralVB.Net Webpage Info Download Pin
Rip V. Winkle22-Feb-04 18:02
Rip V. Winkle22-Feb-04 18:02 

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.