Click here to Skip to main content
16,006,709 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Number Generation Pin
Chira Chandra24-Sep-06 3:43
Chira Chandra24-Sep-06 3:43 
GeneralRe: Number Generation Pin
Christian Graus24-Sep-06 10:49
protectorChristian Graus24-Sep-06 10:49 
GeneralRe: Number Generation Pin
Chira Chandra24-Sep-06 21:42
Chira Chandra24-Sep-06 21:42 
GeneralRe: Number Generation Pin
Christian Graus24-Sep-06 21:46
protectorChristian Graus24-Sep-06 21:46 
QuestionNeed Help for coding VB.NET Pin
Little Ducky23-Sep-06 6:51
Little Ducky23-Sep-06 6:51 
AnswerRe: Need Help for coding VB.NET Pin
Christian Graus23-Sep-06 19:58
protectorChristian Graus23-Sep-06 19:58 
Questionoption button on a wmi script Pin
ashtonnew23-Sep-06 5:53
ashtonnew23-Sep-06 5:53 
AnswerRe: option button on a wmi script Pin
Dave Kreskowiak25-Sep-06 4:41
mveDave Kreskowiak25-Sep-06 4:41 
You can't change the InputBox to support radio buttons, or anything else for that matter. You can either create your own COM-based form in another lanugage or use Internet Explorer as your presentation interface and create a webpage-based form to support more complex input methods, just like any web page with a FORM tag in it.

You'll have to create an HTML file that displays your form, then use something like this to show it:
Set myIE = CreateObject("InternetExplorer.Application")
myIE.Navigate "fully qualified path to myForm.html"
myIE.ToolBar = False
myIE.StatusBar = False
myIE.Resizable = False

Do
Loop While myIE.Busy

myIE.Width = 600
myIE.Height = 800
myIE.Left = 50
myIE.Top = 20
myIE.Visible = True

The InternetExplorer.Application object has a Document property that can be used to get at the various tag contents and fields in your HTML page. The documentation on it is here[^].



Dave Kreskowiak
Microsoft MVP - Visual Basic


QuestionObject Oriented Question working in form Pin
Amr M. K.23-Sep-06 5:24
Amr M. K.23-Sep-06 5:24 
AnswerRe: Object Oriented Question working in form Pin
Guffa23-Sep-06 5:50
Guffa23-Sep-06 5:50 
GeneralRe: Object Oriented Question working in form Pin
Amr M. K.23-Sep-06 6:01
Amr M. K.23-Sep-06 6:01 
GeneralRe: Object Oriented Question working in form Pin
Dave Kreskowiak23-Sep-06 6:52
mveDave Kreskowiak23-Sep-06 6:52 
GeneralRe: Object Oriented Question working in form Pin
Amr M. K.23-Sep-06 8:24
Amr M. K.23-Sep-06 8:24 
AnswerRe: Object Oriented Question working in form Pin
Guffa23-Sep-06 10:40
Guffa23-Sep-06 10:40 
GeneralRe: Object Oriented Question working in form Pin
Dave Kreskowiak23-Sep-06 11:10
mveDave Kreskowiak23-Sep-06 11:10 
AnswerRe: Object Oriented Question working in form Pin
Christian Graus23-Sep-06 20:06
protectorChristian Graus23-Sep-06 20:06 
QuestionI need 2 know Pin
Khalefa_1323-Sep-06 3:19
Khalefa_1323-Sep-06 3:19 
AnswerRe: I need 2 know Pin
Dave Kreskowiak23-Sep-06 5:26
mveDave Kreskowiak23-Sep-06 5:26 
AnswerRe: I need 2 know Pin
Christian Graus23-Sep-06 20:08
protectorChristian Graus23-Sep-06 20:08 
AnswerRe: I need 2 know Pin
Khalefa_1324-Sep-06 3:58
Khalefa_1324-Sep-06 3:58 
QuestionHow to save picture in VB6 ? Pin
Loay Al Lusi22-Sep-06 20:53
Loay Al Lusi22-Sep-06 20:53 
AnswerRe: How to save picture in VB6 ? Pin
Khalefa_1323-Sep-06 3:12
Khalefa_1323-Sep-06 3:12 
GeneralRe: How to save picture in VB6 ? Pin
Loay Al Lusi23-Sep-06 5:44
Loay Al Lusi23-Sep-06 5:44 
GeneralRe: How to save picture in VB6 ? Pin
Loay Al Lusi24-Sep-06 23:44
Loay Al Lusi24-Sep-06 23:44 
QuestionFind no of instances in string Pin
vengaqua22-Sep-06 20:29
vengaqua22-Sep-06 20:29 

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.