Click here to Skip to main content
15,899,026 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionSet Folder Name as File Name Pin
vijay24826-May-09 22:44
vijay24826-May-09 22:44 
AnswerRe: Set Folder Name as File Name Pin
dan!sh 6-May-09 23:03
professional dan!sh 6-May-09 23:03 
AnswerRe: Set Folder Name as File Name Pin
riced7-May-09 1:02
riced7-May-09 1:02 
GeneralRe: Set Folder Name as File Name Pin
vijay24827-May-09 1:17
vijay24827-May-09 1:17 
GeneralRe: Set Folder Name as File Name Pin
dan!sh 7-May-09 1:42
professional dan!sh 7-May-09 1:42 
GeneralRe: Set Folder Name as File Name Pin
riced7-May-09 1:46
riced7-May-09 1:46 
GeneralRe: Set Folder Name as File Name Pin
AdamPDacco19-Jun-09 10:05
AdamPDacco19-Jun-09 10:05 
QuestionFolderBrowserDialog Pin
vijay24826-May-09 22:03
vijay24826-May-09 22:03 
Hi all,
Is it possible to create our own FolderBrowserDialog???
I have created my own MsgBox.
Code:
Sub MyMessageBox1(ByVal strMessage As String, ByVal imgImage As Image)
        Dim frmMsgBx As New Form
        Dim pbxMsgImage As New PictureBox
        Dim lblMsgText As New Label
        Dim btnMsgOK As New Button

        With frmMsgBx
            .MinimizeBox = False
            .MaximizeBox = False
            .Width = 50
            .Height = 20
            .AutoSize = True
            .BackColor = Color.MediumAquamarine
            .Text = "Saved"
            .StartPosition = FormStartPosition.CenterScreen
        End With
        With pbxMsgImage
            .Parent = frmMsgBx
            .Left = 12
            .Top = 12
            .Width = 50
            .Height = 50
            .Image = imgImage
            .SizeMode = PictureBoxSizeMode.StretchImage
        End With
        With lblMsgText
            .Parent = frmMsgBx
            .Left = 100
            .Top = 20
            .Width = 300
            .Height = 20
            .Text = strMessage
            .TextAlign = ContentAlignment.MiddleCenter
        End With
        With btnMsgOK
            .Parent = frmMsgBx
            .Left = 175
            .Top = 45
            .Width = 75
            .Height = 23
            .Text = "OK"
            .DialogResult = DialogResult.OK
            BackColor = Color.MediumAquamarine
        End With

        frmMsgBx.ShowDialog()
        Button3.Enabled = False
    End Sub
/pre>
In the same way is it possible to create a new FolderBrowserDialog???

Thanks in advance

AnswerRe: FolderBrowserDialog Pin
dan!sh 6-May-09 22:50
professional dan!sh 6-May-09 22:50 
QuestionHow to Open Access in Full screen Pin
FuzMic6-May-09 21:58
FuzMic6-May-09 21:58 
AnswerRe: How to Open Access in Full screen Pin
David Mujica7-May-09 3:17
David Mujica7-May-09 3:17 
GeneralRe: How to Open Access in Full screen Pin
FuzMic7-May-09 18:21
FuzMic7-May-09 18:21 
QuestionRegarding LZO.NET and VB.Net Pin
AbhaySobti6-May-09 21:38
AbhaySobti6-May-09 21:38 
AnswerRe: Regarding LZO.NET and VB.Net Pin
Dave Kreskowiak7-May-09 4:58
mveDave Kreskowiak7-May-09 4:58 
QuestionError 419: Permission to use object denied Pin
Chau Ngoc Vo6-May-09 21:26
Chau Ngoc Vo6-May-09 21:26 
AnswerRe: Error 419: Permission to use object denied Pin
Dave Kreskowiak7-May-09 4:52
mveDave Kreskowiak7-May-09 4:52 
QuestionHelp: How to use a Flash button in VB.net? Pin
nickeltl6-May-09 15:29
nickeltl6-May-09 15:29 
AnswerRe: Help: How to use a Flash button in VB.net? Pin
Dave Kreskowiak6-May-09 15:32
mveDave Kreskowiak6-May-09 15:32 
QuestionNeed to copy the results of a msgbox Pin
beeker55336-May-09 14:05
beeker55336-May-09 14:05 
AnswerRe: Need to copy the results of a msgbox Pin
Mycroft Holmes6-May-09 14:28
professionalMycroft Holmes6-May-09 14:28 
GeneralRe: Need to copy the results of a msgbox Pin
beeker55336-May-09 14:37
beeker55336-May-09 14:37 
GeneralRe: Need to copy the results of a msgbox Pin
Luc Pattyn6-May-09 15:12
sitebuilderLuc Pattyn6-May-09 15:12 
GeneralRe: Need to copy the results of a msgbox Pin
beeker55336-May-09 17:18
beeker55336-May-09 17:18 
AnswerRe: Need to copy the results of a msgbox Pin
_Damian S_6-May-09 18:04
professional_Damian S_6-May-09 18:04 
GeneralRe: Need to copy the results of a msgbox Pin
beeker55337-May-09 5:59
beeker55337-May-09 5:59 

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.