Click here to Skip to main content
15,791,740 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Dave Kreskowiak27-Aug-23 5:56
mveDave Kreskowiak27-Aug-23 5:56 
GeneralRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Richard MacCutchan27-Aug-23 7:28
mveRichard MacCutchan27-Aug-23 7:28 
AnswerRe: Issue with "Windows Form App" Disappearing in VB.NET 2022 Pin
Richard MacCutchan27-Aug-23 2:29
mveRichard MacCutchan27-Aug-23 2:29 
QuestionPrinterSettings.CanDuplex appears to not be working Pin
lewist5721-Aug-23 6:27
lewist5721-Aug-23 6:27 
AnswerRe: PrinterSettings.CanDuplex appears to not be working Pin
Gerry Schmitz22-Aug-23 8:48
mveGerry Schmitz22-Aug-23 8:48 
QuestionConvert/Read SQL Image field into pdf Pin
Benniit19-Jul-23 10:07
Benniit19-Jul-23 10:07 
AnswerRe: Convert/Read SQL Image field into pdf Pin
Richard MacCutchan19-Jul-23 23:18
mveRichard MacCutchan19-Jul-23 23:18 
GeneralRe: Convert/Read SQL Image field into pdf Pin
Benniit20-Jul-23 5:22
Benniit20-Jul-23 5: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 5:32
mveRichard MacCutchan20-Jul-23 5:32 
AnswerRe: Convert/Read SQL Image field into pdf Pin
jschell22-Aug-23 7:56
jschell22-Aug-23 7:56 
GeneralScanner Device Pin
Mateo Francisco18-Jul-23 21:50
Mateo Francisco18-Jul-23 21:50 
AnswerRe: Scanner Device Pin
Ralf Meier18-Jul-23 22:15
professionalRalf Meier18-Jul-23 22:15 
GeneralRe: Scanner Device Pin
Victor Nijegorodov19-Jul-23 3:04
Victor Nijegorodov19-Jul-23 3:04 
QuestionAll digits in string after W Pin
Dennis B. Muth6-Jul-23 20:41
Dennis B. Muth6-Jul-23 20:41 
AnswerRe: All digits in string after W Pin
Richard MacCutchan6-Jul-23 23:01
mveRichard MacCutchan6-Jul-23 23:01 
AnswerRe: All digits in string after W Pin
Richard Deeming6-Jul-23 23:01
mveRichard Deeming6-Jul-23 23:01 
GeneralRe: All digits in string after W Pin
jschell7-Jul-23 12:49
jschell7-Jul-23 12:49 
GeneralRe: All digits in string after W Pin
Richard Deeming9-Jul-23 22:16
mveRichard Deeming9-Jul-23 22:16 
GeneralRe: All digits in string after W Pin
jschell10-Jul-23 4:34
jschell10-Jul-23 4:34 
QuestionCURL POST request in VB.NET (json) Pin
Member 118569042-Jul-23 21:02
Member 118569042-Jul-23 21:02 
AnswerRe: CURL POST request in VB.NET (json) Pin
Andre Oosthuizen3-Jul-23 1:38
mveAndre Oosthuizen3-Jul-23 1:38 
GeneralRe: CURL POST request in VB.NET (json) Pin
Member 118569043-Jul-23 23:37
Member 118569043-Jul-23 23:37 
GeneralRe: CURL POST request in VB.NET (json) Pin
Andre Oosthuizen4-Jul-23 0:22
mveAndre Oosthuizen4-Jul-23 0:22 
Questionrecord device!! Pin
Member Alienoiz19-Jun-23 7:31
Member Alienoiz19-Jun-23 7:31 
AnswerRe: record device!! Pin
Richard MacCutchan19-Jun-23 7:50
mveRichard MacCutchan19-Jun-23 7: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.