User Profile

Collapse

Profile Sidebar

Collapse
mmoeller
mmoeller
Last Activity: Apr 27 '07, 02:51 PM
Joined: Apr 19 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mmoeller
    started a topic Include Files on Publish

    Include Files on Publish

    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
    See more | Go to post

  • mmoeller
    replied to Greyed Out Checkbox
    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
    ...
    See more | Go to post
    Last edited by Killer42; Apr 26 '07, 10:33 PM. Reason: Added [CODE] tag

    Leave a comment:


  • mmoeller
    started a topic Greyed Out Checkbox

    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....
    See more | Go to post

  • mmoeller
    replied to Folder Browser Dialog.
    Thanks for the Help. It turned out a little different but basically the same.

    CD1.ShowDialog( )
    Textbox1.Text=C D1.SelectedPath

    Thanks Again.
    M
    See more | Go to post

    Leave a comment:


  • mmoeller
    started a topic Folder Browser Dialog.

    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
    See more | Go to post

  • mmoeller
    replied to Intentional Error on Boolean
    Thanks. I did something similar.
    See more | Go to post

    Leave a comment:


  • mmoeller
    replied to Find length of a string in VB
    var = Len(string)

    I think that's the ticket.
    See more | Go to post

    Leave a comment:


  • mmoeller
    started a topic Intentional Error on Boolean

    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
    ...
    See more | Go to post
No activity results to display
Show More
Working...