I'm not very familiar with the publishing process. I would like to attach 2 *.vbs files to the finished install files. I would like for these files to be placed in the install directory when the published program is installed. I have tried to add resources but there are limited file types. These files could be attached as text if that was nessassary.
Regards,
M
User Profile
Collapse
-
Include Files on Publish
-
A little more clarification. I think I found what I was looking for.
Code:Private Sub SplitContainer1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles SplitContainer1.MouseEnter Dim x As Boolean = CheckBox1.CheckState If x = False Then CheckBox2.Enabled = False Else CheckBox2.Enabled = True End If End Sub
-
Greyed Out Checkbox
I need to be able to greyout one checkbox untill another is checked. I've tried using a split containter w/ two panels, and was able to hide the other text box. The trick was that if you checked the first the second would show, and you could check it. However, if you unchecked the first the second would hide but remain checked. If someone could point me in the right direction in regards to the type of method and event style it would be greatly appreciated.... -
Thanks for the Help. It turned out a little different but basically the same.
CD1.ShowDialog( )
Textbox1.Text=C D1.SelectedPath
Thanks Again.
MLeave a comment:
-
Folder Browser Dialog.
I'd like to link a browser box to a button click event. Once the browsed location is selected I would like to populate a text box with the result.Sorry if this is a simple question, but I'm new and stumped. I have searched around the fourm and not found really what I had been looking for.
Best Regards,
M -
-
-
Intentional Error on Boolean
I'm using an "isInteger" function to test and input. The isInteger function returns a boolean response. If this response is FALSE I would like the Try,Catch,Final ly function I'm using to CATCH it. How do I intentionally create and error catch on a boolean FALSE.
<code>
Private Sub TextBox1_Valida ted(ByVal sender As Object, ByVal e As System.EventArg s) Handles TextBox1.Valida ted
Try
...
No activity results to display
Show More
Leave a comment: