Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
AnswerRe: SYSTEM process and corresponding user process both need access to Registry HKLM section - StartAsCurrentUser.exe not working with VS2019 Pin
Victor Nijegorodov5-Jul-21 23:44
Victor Nijegorodov5-Jul-21 23:44 
AnswerRe: SYSTEM process and corresponding user process both need access to Registry HKLM section - StartAsCurrentUser.exe not working with VS2019 Pin
Dave Kreskowiak6-Jul-21 5:04
mveDave Kreskowiak6-Jul-21 5:04 
AnswerRe: SYSTEM process and corresponding user process both need access to Registry HKLM section - StartAsCurrentUser.exe not working with VS2019 Pin
Emil123456876-Jul-21 5:24
Emil123456876-Jul-21 5:24 
GeneralRe: SYSTEM process and corresponding user process both need access to Registry HKLM section - StartAsCurrentUser.exe not working with VS2019 Pin
OriginalGriff6-Jul-21 11:19
mveOriginalGriff6-Jul-21 11:19 
QuestionHandling Volume and Mixing as a DJ Pin
Filip D. Williams5-Jul-21 21:47
Filip D. Williams5-Jul-21 21:47 
AnswerRe: Handling Volume and Mixing as a DJ Pin
Gerry Schmitz6-Jul-21 7:12
mveGerry Schmitz6-Jul-21 7:12 
GeneralRe: Handling Volume and Mixing as a DJ Pin
Filip D. Williams7-Jul-21 20:40
Filip D. Williams7-Jul-21 20:40 
QuestionHow to solve this Error in SQLite? Pin
Alex Dunlop5-Jul-21 7:48
Alex Dunlop5-Jul-21 7:48 
I use this code in a button to save data into a SQLite file:
        //path of data base
        string conString = @"URI=file:" + Application.StartupPath + "\\DataBase.db"; //database created in debug folder
SQLiteConnection con = new SQLiteConnection(conString);
            SQLiteCommand cmd = new SQLiteCommand(con);

            con.Open();
            try
            {
                cmd.CommandText = "INSERT INTO FileInfo(EqpCode, EqpName, FileName) VALUES(@EqpCode, @EqpName, @FileName)";

                for (int i = 0; i < myTable02.Rows.Count; i++)
                {
                    string EqpCode = myTable02.Rows[i][0].ToString();
                    string EqpName = myTable02.Rows[i][1].ToString();
                    string FileName = myTable02.Rows[i][2].ToString();

                    cmd.Parameters.AddWithValue(@EqpCode, EqpCode);
                    cmd.Parameters.AddWithValue(@EqpName, EqpName);
                    cmd.Parameters.AddWithValue(@FileName, FileName);

                    cmd.ExecuteNonQuery();
                }
                con.Close();
            }
            catch (Exception)
            {

                throw;
            }

The error is thrown in cmd.ExecuteNonQuery() line:
System.Data.SQLite.SQLiteException: 'unknown error
Insufficient parameters supplied to the command'

Please help me.
AnswerRe: How to solve this Error in SQLite? Pin
Dave Kreskowiak5-Jul-21 7:56
mveDave Kreskowiak5-Jul-21 7:56 
AnswerRe: How to solve this Error in SQLite? Pin
OriginalGriff5-Jul-21 7:56
mveOriginalGriff5-Jul-21 7:56 
QuestionHow to get pdf file names? Pin
Alex Dunlop4-Jul-21 6:54
Alex Dunlop4-Jul-21 6:54 
AnswerRe: How to get pdf file names? Pin
OriginalGriff4-Jul-21 7:57
mveOriginalGriff4-Jul-21 7:57 
GeneralRe: How to get pdf file names? Pin
Alex Dunlop5-Jul-21 4:43
Alex Dunlop5-Jul-21 4:43 
GeneralRe: How to get pdf file names? Pin
OriginalGriff5-Jul-21 5:44
mveOriginalGriff5-Jul-21 5:44 
GeneralRe: How to get pdf file names? Pin
Alex Dunlop5-Jul-21 7:21
Alex Dunlop5-Jul-21 7:21 
GeneralRe: How to get pdf file names? Pin
OriginalGriff5-Jul-21 7:53
mveOriginalGriff5-Jul-21 7:53 
QuestionIs it possible to update content of an xml file in DropBox using DropBox API? Pin
Alex Dunlop2-Jul-21 8:51
Alex Dunlop2-Jul-21 8:51 
AnswerRe: Is it possible to update content of an xml file in DropBox using DropBox API? Pin
Dave Kreskowiak2-Jul-21 19:08
mveDave Kreskowiak2-Jul-21 19:08 
QuestionHow to add frame and Label controls at the same time by clicking a button in Xamarin? Pin
Alex Dunlop1-Jul-21 6:44
Alex Dunlop1-Jul-21 6:44 
AnswerRe: How to add frame and Label controls at the same time by clicking a button in Xamarin? Pin
Gerry Schmitz1-Jul-21 7:20
mveGerry Schmitz1-Jul-21 7:20 
GeneralRe: How to add frame and Label controls at the same time by clicking a button in Xamarin? Pin
Alex Dunlop1-Jul-21 7:27
Alex Dunlop1-Jul-21 7:27 
Questionshow the Name of ID datagridView cell0 to cell1 Pin
remiki1-Jul-21 0:21
remiki1-Jul-21 0:21 
AnswerRe: show the Name of ID datagridView cell0 to cell1 Pin
Richard Deeming1-Jul-21 0:46
mveRichard Deeming1-Jul-21 0:46 
GeneralRe: show the Name of ID datagridView cell0 to cell1 Pin
remiki1-Jul-21 1:31
remiki1-Jul-21 1:31 
AnswerRe: show the Name of ID datagridView cell0 to cell1 Pin
OriginalGriff1-Jul-21 1:02
mveOriginalGriff1-Jul-21 1:02 

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.