Click here to Skip to main content
16,004,924 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Formatting Text with VB Pin
lodogg2-Apr-10 18:06
lodogg2-Apr-10 18:06 
GeneralRe: Formatting Text with VB Pin
lodogg2-Apr-10 18:04
lodogg2-Apr-10 18:04 
GeneralRe: Formatting Text with VB Pin
Luc Pattyn2-Apr-10 18:23
sitebuilderLuc Pattyn2-Apr-10 18:23 
QuestionPipes and Files - making it work Pin
LurkingGryphon1-Apr-10 11:09
LurkingGryphon1-Apr-10 11:09 
AnswerRe: Pipes and Files - making it work Pin
Mycroft Holmes2-Apr-10 23:41
professionalMycroft Holmes2-Apr-10 23:41 
GeneralRe: Pipes and Files - making it work Pin
LurkingGryphon6-Apr-10 3:41
LurkingGryphon6-Apr-10 3:41 
GeneralRe: Pipes and Files - making it work Pin
Mycroft Holmes6-Apr-10 11:52
professionalMycroft Holmes6-Apr-10 11:52 
AnswerRe: Pipes and Files - making it work Pin
Gideon Engelberth3-Apr-10 6:09
Gideon Engelberth3-Apr-10 6:09 
We have a pair of programs using named pipes with a .NET server app and a native (Delphi, not C++, but still native) client app, so I know this is possible. During development, the programs ran on different machines and the required step to let the programs talk across different users was to use the NamedPipeServerStream overload that took a PipeSecurity. It ended up something like this (namespaces avoided for brevity):

VB
Dim ps As PipeSecurity
ps.AddAccessRule(New PipeAccessRule("Everyone", PipeAccessRights.FullControl,
                                    AccessControlType.Allow))
Dim New NamedPipeServerStream("PipeName", ..., ps)



As I recall, the problem was configuring the security of the pipe to allow users from another computer to connect.
GeneralRe: Pipes and Files - making it work Pin
LurkingGryphon6-Apr-10 3:45
LurkingGryphon6-Apr-10 3:45 
QuestionBind listview using dataset Pin
sandhya1431-Mar-10 19:08
sandhya1431-Mar-10 19:08 
AnswerRe: Bind listview using dataset Pin
Paramu197331-Mar-10 20:26
Paramu197331-Mar-10 20:26 
AnswerRe: Bind listview using dataset Pin
William Winner1-Apr-10 7:49
William Winner1-Apr-10 7:49 
QuestionVBA - Access 2007 print preview properties Pin
john john mackey31-Mar-10 11:16
john john mackey31-Mar-10 11:16 
AnswerRe: VBA - Access 2007 print preview properties Pin
Eddy Vluggen31-Mar-10 12:24
professionalEddy Vluggen31-Mar-10 12:24 
GeneralRe: VBA - Access 2007 print preview properties Pin
john john mackey1-Apr-10 6:05
john john mackey1-Apr-10 6:05 
QuestionCustom Compilation Error Pin
programmervb.netc++31-Mar-10 9:24
programmervb.netc++31-Mar-10 9:24 
AnswerRe: Custom Compilation Error Pin
Eddy Vluggen31-Mar-10 12:58
professionalEddy Vluggen31-Mar-10 12:58 
GeneralRe: Custom Compilation Error Pin
EliottA1-Apr-10 6:04
EliottA1-Apr-10 6:04 
GeneralRe: Custom Compilation Error Pin
Eddy Vluggen1-Apr-10 22:34
professionalEddy Vluggen1-Apr-10 22:34 
GeneralRe: Custom Compilation Error Pin
programmervb.netc++4-Apr-10 12:22
programmervb.netc++4-Apr-10 12:22 
GeneralRe: Custom Compilation Error Pin
Eddy Vluggen5-Apr-10 0:15
professionalEddy Vluggen5-Apr-10 0:15 
QuestionHow can I show a text on mouseover over an image in vb.net? Pin
waner michaud31-Mar-10 3:51
waner michaud31-Mar-10 3:51 
AnswerRe: How can I show a text on mouseover over an image in vb.net? Pin
dan!sh 31-Mar-10 4:40
professional dan!sh 31-Mar-10 4:40 
GeneralRe: How can I show a text on mouseover over an image in vb.net? Pin
waner michaud31-Mar-10 6:27
waner michaud31-Mar-10 6:27 
AnswerRe: How can I show a text on mouseover over an image in vb.net? Pin
Smithers-Jones31-Mar-10 6:49
Smithers-Jones31-Mar-10 6:49 

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.