Click here to Skip to main content
15,892,797 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: SQL SERVER Login error...! Pin
Dave Kreskowiak24-Feb-09 1:55
mveDave Kreskowiak24-Feb-09 1:55 
AnswerRe: SQL SERVER Login error...! Pin
Eddy Vluggen24-Feb-09 2:14
professionalEddy Vluggen24-Feb-09 2:14 
AnswerRe: SQL SERVER Login error...! Pin
Dave Kreskowiak24-Feb-09 3:29
mveDave Kreskowiak24-Feb-09 3:29 
QuestionHow to FTP a file not existing on server through vb.net Pin
nav_duggal23-Feb-09 20:03
nav_duggal23-Feb-09 20:03 
AnswerRe: How to FTP a file not existing on server through vb.net Pin
JR21223-Feb-09 20:52
JR21223-Feb-09 20:52 
GeneralRe: How to FTP a file not existing on server through vb.net Pin
nav_duggal23-Feb-09 20:58
nav_duggal23-Feb-09 20:58 
AnswerRe: How to FTP a file not existing on server through vb.net Pin
kadaoui el mehdi23-Feb-09 21:00
kadaoui el mehdi23-Feb-09 21:00 
QuestionPrinting xml Pin
Stephen Lintott23-Feb-09 20:01
Stephen Lintott23-Feb-09 20:01 
Hi. I'm busy with a app that needs to print xml rendered by xslt. Currently I am printing with internet explorer in the following manner
Dim internetExplorer As New SHDocVw.InternetExplorerClass()
        Dim webBrowser As SHDocVw.IWebBrowser2 = CType(internetExplorer, SHDocVw.IWebBrowser2)
        'Make the web browser visible
        webBrowser.Visible = False
        'Display empty page so we have something to manipulate.            
        Dim noValue As Object = System.Reflection.Missing.Value
        webBrowser.Navigate("file://" + fileName, noValue, noValue, noValue, noValue)
        While webBrowser.Busy
            Threading.Thread.Sleep(500)
        End While
        'Get access to the webbrowser's document.
        internetExplorer.ExecWB(SHDocVw.OLECMDID.OLECMDID_PRINT, SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER, noValue, noValue)
        'CType(internetExplorer.Document, mshtml.IHTMLDocument2).close()        
        Marshal.ReleaseComObject(internetExplorer)
        Marshal.ReleaseComObject(webBrowser)


I need to find a different way to do this as the above code gives a com exception. Or I need a workaround for the above code. If anybody can help I would greatly appreaciate it.
Stephen

Stephen Lintott Bsc IT (RAU)

Questionhow to bind checkedlistbox with dataset in vb.net (window application) Pin
Jagz W23-Feb-09 19:06
professionalJagz W23-Feb-09 19:06 
AnswerRe: how to bind checkedlistbox with dataset in vb.net (window application) Pin
Dave Kreskowiak24-Feb-09 3:51
mveDave Kreskowiak24-Feb-09 3:51 
QuestionUsing Reflection to on a Subclass as a Property Pin
nickbequick23-Feb-09 11:52
nickbequick23-Feb-09 11:52 
AnswerRe: Using Reflection to on a Subclass as a Property Pin
Dave Kreskowiak24-Feb-09 3:50
mveDave Kreskowiak24-Feb-09 3:50 
GeneralRe: Using Reflection to on a Subclass as a Property Pin
nickbequick24-Feb-09 4:01
nickbequick24-Feb-09 4:01 
GeneralRe: Using Reflection to on a Subclass as a Property Pin
Dave Kreskowiak24-Feb-09 6:17
mveDave Kreskowiak24-Feb-09 6:17 
QuestionProblems getting httpWebRequest to work Pin
rfrank535623-Feb-09 8:22
rfrank535623-Feb-09 8:22 
AnswerRe: Problems getting httpWebRequest to work Pin
Dave Kreskowiak24-Feb-09 3:43
mveDave Kreskowiak24-Feb-09 3:43 
GeneralRe: Problems getting httpWebRequest to work [modified] Pin
rfrank535624-Feb-09 10:21
rfrank535624-Feb-09 10:21 
Question$$$ $$$ NEED VB BASIC HELP - WEB DATA EXTRACTION - NEED CODE !!! $$$ $$$ Pin
pcfacile23-Feb-09 7:49
pcfacile23-Feb-09 7:49 
AnswerRe: $$$ $$$ NEED VB BASIC HELP - WEB DATA EXTRACTION - NEED CODE !!! $$$ $$$ Pin
0x3c023-Feb-09 8:00
0x3c023-Feb-09 8:00 
AnswerRe: $$$ $$$ NEED VB BASIC HELP - WEB DATA EXTRACTION - NEED CODE !!! $$$ $$$ Pin
Mycroft Holmes23-Feb-09 15:57
professionalMycroft Holmes23-Feb-09 15:57 
QuestionHow to place the text at cursor position in vb.net textbox Pin
dilipmca0423-Feb-09 3:39
dilipmca0423-Feb-09 3:39 
AnswerRe: How to place the text at cursor position in vb.net textbox Pin
Dave Kreskowiak23-Feb-09 4:28
mveDave Kreskowiak23-Feb-09 4:28 
GeneralNew features in VB 10 Pin
Kevin McFarlane23-Feb-09 2:23
Kevin McFarlane23-Feb-09 2:23 
QuestionHow save a playlist in vb.net Pin
akosidandan23-Feb-09 2:03
akosidandan23-Feb-09 2:03 
AnswerRe: How save a playlist in vb.net Pin
Dave Kreskowiak23-Feb-09 4:27
mveDave Kreskowiak23-Feb-09 4:27 

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.