Click here to Skip to main content
15,891,248 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Asc(string character) returns wrong value chinese win10 machine Pin
ledtech326-Oct-17 16:45
ledtech326-Oct-17 16:45 
QuestionRe: Asc(string character) returns wrong value chinese win10 machine Pin
ledtech329-Oct-17 3:50
ledtech329-Oct-17 3:50 
AnswerRe: Asc(string character) returns wrong value chinese win10 machine Pin
Richard Deeming2-Nov-17 5:13
mveRichard Deeming2-Nov-17 5:13 
GeneralRe: Asc(string character) returns wrong value chinese win10 machine Pin
ledtech32-Nov-17 12:25
ledtech32-Nov-17 12:25 
GeneralRe: Asc(string character) returns wrong value chinese win10 machine Pin
Richard Deeming3-Nov-17 3:00
mveRichard Deeming3-Nov-17 3:00 
GeneralRe: Asc(string character) returns wrong value chinese win10 machine Pin
ledtech33-Nov-17 4:51
ledtech33-Nov-17 4:51 
QuestionPrinting assorted files Pin
Member 1325084725-Oct-17 3:07
Member 1325084725-Oct-17 3:07 
AnswerRe: Printing assorted files Pin
Richard Deeming25-Oct-17 3:39
mveRichard Deeming25-Oct-17 3:39 
Assuming it's a desktop application, you can print a file by using Process.Start[^] with the "print" verb.
VB.NET
Dim psi As New ProcessStartInfo
psi.FileName = pathToTheFile
psi.Verb = "print"
Process.Start(psi)

NB: This requires that there is an application registered to print the file. Any file which shows "print" in the Windows Explorer context menu should work.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionLinq RemoveRange, or a better idea Pin
jkirkerx24-Oct-17 7:44
professionaljkirkerx24-Oct-17 7:44 
AnswerRe: Linq RemoveRange, or a better idea Pin
jkirkerx24-Oct-17 7:51
professionaljkirkerx24-Oct-17 7:51 
AnswerRe: Linq RemoveRange, or a better idea Pin
Richard Deeming24-Oct-17 9:52
mveRichard Deeming24-Oct-17 9:52 
GeneralRe: Linq RemoveRange, or a better idea Pin
jkirkerx25-Oct-17 11:36
professionaljkirkerx25-Oct-17 11:36 
QuestionVB Linq, got 1 duplicate in a GroupBy Call Pin
jkirkerx16-Oct-17 13:15
professionaljkirkerx16-Oct-17 13:15 
AnswerRe: VB Linq, got 1 duplicate in a GroupBy Call Pin
Richard Deeming17-Oct-17 2:08
mveRichard Deeming17-Oct-17 2:08 
GeneralRe: VB Linq, got 1 duplicate in a GroupBy Call Pin
jkirkerx17-Oct-17 6:28
professionaljkirkerx17-Oct-17 6:28 
AnswerRe: VB Linq, got 1 duplicate in a GroupBy Call Pin
Eddy Vluggen17-Oct-17 2:09
professionalEddy Vluggen17-Oct-17 2:09 
GeneralRe: VB Linq, got 1 duplicate in a GroupBy Call Pin
jkirkerx17-Oct-17 6:24
professionaljkirkerx17-Oct-17 6:24 
QuestionReading complex JSON objects with Newtonsoft Pin
A_Griffin15-Oct-17 1:32
A_Griffin15-Oct-17 1:32 
AnswerRe: Reading complex JSON objects with Newtonsoft Pin
A_Griffin16-Oct-17 23:36
A_Griffin16-Oct-17 23:36 
QuestionCompletely disabling Scrolling in a DataGridView Pin
Peter R. Fletcher14-Oct-17 10:57
Peter R. Fletcher14-Oct-17 10:57 
AnswerRe: Completely disabling Scrolling in a DataGridView - SOLVED Pin
Peter R. Fletcher16-Oct-17 11:29
Peter R. Fletcher16-Oct-17 11:29 
QuestionHow do I change XML-driven menu strip's font? Vb.net Pin
Member 1338609314-Oct-17 4:18
Member 1338609314-Oct-17 4:18 
AnswerRe: How do I change XML-driven menu strip's font? Vb.net Pin
Richard MacCutchan14-Oct-17 6:48
mveRichard MacCutchan14-Oct-17 6:48 
QuestionChange the format Pin
Felix Holzinger7-Oct-17 11:51
Felix Holzinger7-Oct-17 11:51 
AnswerRe: Change the format Pin
Richard MacCutchan10-Oct-17 21:04
mveRichard MacCutchan10-Oct-17 21:04 

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.