Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

VB Prompt for question


Recommended Posts

If you're using functions like AskNumber(), AskValue() and AskString(), you can pass them default values. For example:

 

code:

' Call the main subroutine

Call Main()

 

 

' Purpose: the main subroutine

Sub Main()

Dim iMyNumber : iMynumber = 12 ' the number that I want (default to 12)

Dim dMyValue : dMyValue = 3.14 ' the decimal value that I want (default to 3.14)

Dim strMyString : strMyString = "Hello Mastercam World" ' the string that I want (default to "Hello Mastercam World")

 

 

' prompt for an integer

If (AskNumber("Enter a number", 0, 100, iMyNumber)) Then

ShowNumber("My number is: ", iMyNumber)

End If

 

' prompt for a decimal value

If (AskValue("Enter a decimal value", 0.000, 100.000, dMyValue)) Then

ShowDouble("My decimal value is: ", dMyValue)

End If

 

' prompt for a string

If (AskString(strMyString)) Then

ShowString ("My string is: " & strMyString)

End If

End Sub

The variable that will hold the result of the "ask" functions can be initialized or set beforehand. This will be reflected as a default answer when your "ask" function is called.

 

HTH.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...