The text of this article is not in this database — only its details are. Read it on the old site: How to Pass Parameter in EXE
4 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: How to Pass Parameter in EXE
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Subash KoiralaPosted Jun 17, 2009, 1:46 PM
how can we pass parameters to main of C Program executable, from VB.NET interface?
Subash KoiralaPosted Jun 17, 2009, 1:43 PM
how can we pass parameters to main of C Program executable, from VB.NET interface.
lalit agrawalPosted Nov 1, 2008, 8:59 AM
Private Sub TXTPACK_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TXTPACK.KeyPress AllowDecimals() End Sub Public Function AllowDecimals(ByVal txt As TextBox, ByVal KeyAscii As Integer) As Boolean AllowDecimals = True If KeyAscii = Keys.Enter Or KeyAscii = Keys.Tab _ Or KeyAscii = 8 Then Exit Function If Not (KeyAscii > 47 And KeyAscii < 59) And Not (KeyAscii = 46 And Not (InStr(1, txt.Text, ".") > 0)) Then If Not KeyAscii = 8 Then KeyAscii = 0 AllowDecimals = False End If End If End Function