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

Visual Basic

 
AnswerRe: listview selected row is light grey when control loses focus, not deep blue Pin
Eddy Vluggen17-Jun-14 7:26
professionalEddy Vluggen17-Jun-14 7:26 
GeneralRe: listview selected row is light grey when control loses focus, not deep blue Pin
Jim Dolson17-Jun-14 16:00
Jim Dolson17-Jun-14 16:00 
QuestionEntity framework : disconnect from database and set offilne Pin
dilkonika16-Jun-14 4:47
dilkonika16-Jun-14 4:47 
AnswerRe: Entity framework : disconnect from database and set offilne Pin
Dave Kreskowiak17-Jun-14 7:03
mveDave Kreskowiak17-Jun-14 7:03 
Question"Open Database connectivity error" while opening Word from VB with OLE Pin
Badusha15-Jun-14 22:36
Badusha15-Jun-14 22:36 
AnswerRe: "Open Database connectivity error" while opening Word from VB with OLE Pin
Eddy Vluggen17-Jun-14 7:31
professionalEddy Vluggen17-Jun-14 7:31 
GeneralRe: "Open Database connectivity error" while opening Word from VB with OLE Pin
Badusha24-Jun-14 19:02
Badusha24-Jun-14 19:02 
QuestionHow to switch frame to RightToLeft Pin
Member 1061936511-Jun-14 21:03
Member 1061936511-Jun-14 21:03 
I am trying to mirror a VB frame to RightToLeft direction. I succeeded to mirror the frame, but all the text of frame components(Labels and text box) are mirrored too.

Is there any way to prevent the components to be mirror?


VB
Const WS_EX_LAYOUTRTL = &H400000
Const WS_EX_NOINHERITLAYOUT = &H100000
Protected Overrides ReadOnly Property CreateParams() As System.Windows.Forms.CreateParams
    Get
        Dim CP As System.Windows.Forms.CreateParams = MyBase.CreateParams
        If Not MyBase.DesignMode() Then
            CP.ExStyle = CP.ExStyle Or WS_EX_LAYOUTRTL
            ''Or _
            '' WS_EX_NOINHERITLAYOUT
        End If
        Return CP
    End Get
End Property



When I tried to add "OR WS_EX_NOINHERITLAYOUT " the frame didn't mirror at all.
QuestionPlease help me to put UserControl to datagridview cells Pin
Miller Nguyen11-Jun-14 16:34
Miller Nguyen11-Jun-14 16:34 
AnswerRe: Please help me to put UserControl to datagridview cells Pin
Bernhard Hiller11-Jun-14 20:47
Bernhard Hiller11-Jun-14 20:47 
GeneralRe: Please help me to put UserControl to datagridview cells Pin
Miller Nguyen12-Jun-14 20:56
Miller Nguyen12-Jun-14 20:56 
AnswerRe: Please help me to put UserControl to datagridview cells Pin
Nguyen Tuan Anh11-Jun-14 23:09
Nguyen Tuan Anh11-Jun-14 23:09 
GeneralRe: Please help me to put UserControl to datagridview cells Pin
Miller Nguyen12-Jun-14 20:58
Miller Nguyen12-Jun-14 20:58 
QuestionHow to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Nguyen Tuan Anh10-Jun-14 5:19
Nguyen Tuan Anh10-Jun-14 5:19 
AnswerRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Richard MacCutchan10-Jun-14 6:06
mveRichard MacCutchan10-Jun-14 6:06 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Nguyen Tuan Anh10-Jun-14 15:54
Nguyen Tuan Anh10-Jun-14 15:54 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Richard MacCutchan10-Jun-14 21:46
mveRichard MacCutchan10-Jun-14 21:46 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Dave Kreskowiak11-Jun-14 3:06
mveDave Kreskowiak11-Jun-14 3:06 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Nguyen Tuan Anh11-Jun-14 4:14
Nguyen Tuan Anh11-Jun-14 4:14 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Dave Kreskowiak11-Jun-14 6:49
mveDave Kreskowiak11-Jun-14 6:49 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Nguyen Tuan Anh11-Jun-14 17:38
Nguyen Tuan Anh11-Jun-14 17:38 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Dave Kreskowiak12-Jun-14 1:50
mveDave Kreskowiak12-Jun-14 1:50 
AnswerRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Bernhard Hiller11-Jun-14 20:50
Bernhard Hiller11-Jun-14 20:50 
GeneralRe: How to publish Visual Basic 2010 (connected to Access 2007 DB) project? Pin
Nguyen Tuan Anh11-Jun-14 20:54
Nguyen Tuan Anh11-Jun-14 20:54 
QuestionNgen fail with a protected .net exe file Pin
dilkonika9-Jun-14 5:36
dilkonika9-Jun-14 5:36 

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.