Click here to Skip to main content
15,886,873 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Dave Kreskowiak27-Aug-23 4:56
mveDave Kreskowiak27-Aug-23 4:56 
GeneralRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Richard MacCutchan27-Aug-23 6:28
mveRichard MacCutchan27-Aug-23 6:28 
AnswerRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Richard MacCutchan27-Aug-23 1:29
mveRichard MacCutchan27-Aug-23 1:29 
QuestionPrinterSettings.CanDuplex appears to not be working Pin
lewist5721-Aug-23 5:27
lewist5721-Aug-23 5:27 
AnswerRe: PrinterSettings.CanDuplex appears to not be working Pin
Gerry Schmitz22-Aug-23 7:48
mveGerry Schmitz22-Aug-23 7:48 
QuestionConvert/Read SQL Image field into pdf Pin
Benniit19-Jul-23 9:07
Benniit19-Jul-23 9:07 
AnswerRe: Convert/Read SQL Image field into pdf Pin
Richard MacCutchan19-Jul-23 22:18
mveRichard MacCutchan19-Jul-23 22:18 
GeneralRe: Convert/Read SQL Image field into pdf Pin
Benniit20-Jul-23 4:22
Benniit20-Jul-23 4:22 
Thanks for the reply. Please storing the pdf is not a problem but retrieving it is issue for now. Please how do I retrieve this line Me.Pic1.Image = Image.FromStream(ms) and convert it into pdf. This line of code was used to retrieve image file correctly and I used the same process to store a pdf file but the above code to retrieve is it is the problem. Thanks

VB
Dim strQuery As String = "Select ReceiptNo,Pic1 from BPA1 where ReceiptNo=@ReceiptNo"
                SQLCon1.Open()
                   comFile = New SqlCommand(strQuery, SQLCon1)
                   comFile.Parameters.AddWithValue("@ReceiptNo", Me.txtReceiptNo.Text.Trim)
                    daFile = New SqlDataAdapter(comFile)
                    daFile.Fill(taFile)
                    If taFile.Rows(0).Item("Pic1") IsNot DBNull.Value Then
                        Dim img() As Byte
                        img = taFile.Rows(0).Item("Pic1")
                        Dim ms As New MemoryStream(img)
                        If img.Length <> "0" Then
                        Me.Pic1.Image = Image.FromStream(ms)
                        ' Me.txtPdfPath.Text = File.FromStream(ms)
                    Else
                            Me.Pic1.Image = Nothing
                        End If
                    End If

GeneralRe: Convert/Read SQL Image field into pdf Pin
Richard MacCutchan20-Jul-23 4:32
mveRichard MacCutchan20-Jul-23 4:32 
AnswerRe: Convert/Read SQL Image field into pdf Pin
jschell22-Aug-23 6:56
jschell22-Aug-23 6:56 
GeneralScanner Device Pin
Mateo Francisco18-Jul-23 20:50
Mateo Francisco18-Jul-23 20:50 
AnswerRe: Scanner Device Pin
Ralf Meier18-Jul-23 21:15
mveRalf Meier18-Jul-23 21:15 
GeneralRe: Scanner Device Pin
Victor Nijegorodov19-Jul-23 2:04
Victor Nijegorodov19-Jul-23 2:04 
QuestionAll digits in string after W Pin
Dennis B. Muth6-Jul-23 19:41
Dennis B. Muth6-Jul-23 19:41 
AnswerRe: All digits in string after W Pin
Richard MacCutchan6-Jul-23 22:01
mveRichard MacCutchan6-Jul-23 22:01 
AnswerRe: All digits in string after W Pin
Richard Deeming6-Jul-23 22:01
mveRichard Deeming6-Jul-23 22:01 
GeneralRe: All digits in string after W Pin
jschell7-Jul-23 11:49
jschell7-Jul-23 11:49 
GeneralRe: All digits in string after W Pin
Richard Deeming9-Jul-23 21:16
mveRichard Deeming9-Jul-23 21:16 
GeneralRe: All digits in string after W Pin
jschell10-Jul-23 3:34
jschell10-Jul-23 3:34 
QuestionCURL POST request in VB.NET (json) Pin
Member 118569042-Jul-23 20:02
Member 118569042-Jul-23 20:02 
AnswerRe: CURL POST request in VB.NET (json) Pin
Andre Oosthuizen3-Jul-23 0:38
mveAndre Oosthuizen3-Jul-23 0:38 
GeneralRe: CURL POST request in VB.NET (json) Pin
Member 118569043-Jul-23 22:37
Member 118569043-Jul-23 22:37 
GeneralRe: CURL POST request in VB.NET (json) Pin
Andre Oosthuizen3-Jul-23 23:22
mveAndre Oosthuizen3-Jul-23 23:22 
Questionrecord device!! Pin
Member Alienoiz19-Jun-23 6:31
Member Alienoiz19-Jun-23 6:31 
AnswerRe: record device!! Pin
Richard MacCutchan19-Jun-23 6:50
mveRichard MacCutchan19-Jun-23 6:50 

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.