Click here to Skip to main content
15,906,333 members
Home / Discussions / C#
   

C#

 
GeneralRe: What is the synntax error in this SQLite query? Pin
Alex Dunlop8-Jul-21 7:55
Alex Dunlop8-Jul-21 7:55 
GeneralRe: What is the synntax error in this SQLite query? Pin
Dave Kreskowiak8-Jul-21 8:32
mveDave Kreskowiak8-Jul-21 8:32 
GeneralRe: What is the synntax error in this SQLite query? Pin
Alex Dunlop8-Jul-21 7:57
Alex Dunlop8-Jul-21 7:57 
GeneralRe: What is the synntax error in this SQLite query? Pin
Richard MacCutchan8-Jul-21 21:12
mveRichard MacCutchan8-Jul-21 21:12 
GeneralRe: What is the synntax error in this SQLite query? Pin
Alex Dunlop8-Jul-21 8:50
Alex Dunlop8-Jul-21 8:50 
AnswerRe: What is the syntax error in this SQLite query? Pin
SeeSharp29-Jul-21 5:47
SeeSharp29-Jul-21 5:47 
GeneralRe: What is the syntax error in this SQLite query? Pin
OriginalGriff9-Jul-21 19:04
mveOriginalGriff9-Jul-21 19:04 
GeneralRe: What is the syntax error in this SQLite query? Pin
Victor Nijegorodov9-Jul-21 21:39
Victor Nijegorodov9-Jul-21 21:39 
GeneralRe: What is the syntax error in this SQLite query? Pin
OriginalGriff9-Jul-21 22:31
mveOriginalGriff9-Jul-21 22:31 
GeneralRe: What is the syntax error in this SQLite query? Pin
Richard Andrew x6410-Jul-21 0:03
professionalRichard Andrew x6410-Jul-21 0:03 
GeneralRe: What is the syntax error in this SQLite query? Pin
OriginalGriff10-Jul-21 0:10
mveOriginalGriff10-Jul-21 0:10 
GeneralRe: What is the syntax error in this SQLite query? Pin
SeeSharp212-Jul-21 1:11
SeeSharp212-Jul-21 1:11 
QuestionHow to create Shared memory between C# application and VC++ console application Pin
manoharbalu8-Jul-21 1:46
manoharbalu8-Jul-21 1:46 
AnswerRe: How to create Shared memory between C# application and VC++ console application Pin
Richard Deeming8-Jul-21 2:18
mveRichard Deeming8-Jul-21 2:18 
GeneralRe: How to create Shared memory between C# application and VC++ console application Pin
manoharbalu9-Jul-21 0:21
manoharbalu9-Jul-21 0:21 
GeneralRe: How to create Shared memory between C# application and VC++ console application Pin
Richard Deeming9-Jul-21 0:44
mveRichard Deeming9-Jul-21 0:44 
AnswerRe: How to create Shared memory between C# application and VC++ console application Pin
OriginalGriff8-Jul-21 2:20
mveOriginalGriff8-Jul-21 2:20 
AnswerRe: How to create Shared memory between C# application and VC++ console application Pin
Gerry Schmitz8-Jul-21 6:49
mveGerry Schmitz8-Jul-21 6:49 
GeneralRe: How to create Shared memory between C# application and VC++ console application Pin
manoharbalu9-Jul-21 0:17
manoharbalu9-Jul-21 0:17 
GeneralRe: How to create Shared memory between C# application and VC++ console application Pin
Gerry Schmitz9-Jul-21 5:39
mveGerry Schmitz9-Jul-21 5:39 
AnswerRe: How to create Shared memory between C# application and VC++ console application Pin
jschell17-Jul-21 10:54
jschell17-Jul-21 10:54 
QuestionHow to read value of a cell in GridView (DevExpress)? Pin
Alex Dunlop7-Jul-21 5:18
Alex Dunlop7-Jul-21 5:18 
Hi,
I searched DevExpress forum. They say that I need to use gridView.GetRowCellValue() method.
I used this code:
C#
private void gridView4_DoubleClick(object sender, EventArgs e)
        {
            DXMouseEventArgs mouseEvent = e as DXMouseEventArgs;
            GridView view = sender as GridView;
            GridHitInfo info = view.CalcHitInfo(mouseEvent.Location);
            if (info.InRow || info.InRowCell)
            {
                MessageBox.Show(gridView4.GetRowCellValue(info.RowHandle, "File Name").ToString());
               
            }
        }

But I have error in MessageBox.... line.
it says:
System.NullReferenceException: 'Object reference not set to an instance of an object.'

DevExpress.XtraGrid.Views.Base.ColumnView.GetRowCellValue(...) returned null.
GeneralRe: How to read value of a cell in GridView (DevExpress)? Pin
Richard MacCutchan7-Jul-21 5:39
mveRichard MacCutchan7-Jul-21 5:39 
GeneralRe: How to read value of a cell in GridView (DevExpress)? Pin
Alex Dunlop7-Jul-21 6:06
Alex Dunlop7-Jul-21 6:06 
GeneralRe: How to read value of a cell in GridView (DevExpress)? Pin
Richard MacCutchan7-Jul-21 6:10
mveRichard MacCutchan7-Jul-21 6:10 

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.