Dear sir,
I need your help for VB.net 2008.
Currently i am MCA student.
I have develope a small apllication. I required help for Browse button & Print button.
Browse button can accept path of image from any drive & of any type.
And print button gives command of print to connected printer.

So please help me.

Thanks & Best Regards,
Bharat Bodage
9561374795

Recommended Answers

All 5 Replies

Below is the code for selecting or browsing the image file. i have just mentioned jpg for example u can include what all u want.

Dim fBrowse As New OpenFileDialog
        With fBrowse
            .Filter = "Image files(*.jpg)|*.jpg|All files (*.*)|*.*"
            .FilterIndex = 1
            .Title = "Load image file"
        End With
        If fBrowse.ShowDialog() = Windows.Forms.DialogResult.OK Then
             'Do what u want to do..
         End If

Thanks Sir for giving help.
This code is run..
Thanks so much.

Thanks for previous coding.
Right now i need your help for changing font of datagridview in VB.net 2008
So, Please give me code for that.

Best Regards,
Bharat Bodage

>>Right now i need your help for changing font of datagridview in VB.net 2008
Entirely different question; start a new.thread and mark this one as Solved.
.thanks and welcome to the forum.:)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.