Search results for query: *

  • Users: Kostakis45
  • Content: Threads
  • Order by date
  1. Kostakis45

    Resolved Shortcut

    Hello Everyone.Following this turtorial video to create a setup wizard for my program I stumbled upon a problem.Though I managed to make setup wizard when I try to run the main program through the created shortcut it won't run. When i run the installation wizard it doesn't seem to installing the...
  2. Kostakis45

    Resolved SQLite Delete data don't work

    I'm trying to delete a record from database. public void Delete_Info_From_DB() { Plasteka pa = new Plasteka();//Main Form var con = new SQLiteConnection(connection); con.Open(); var cmd = new SQLiteCommand(con); try...
  3. Kostakis45

    Resolved Clipboard image to pictureBox and then to sqlite db

    So i guess this is a continuation to my previous post. I'm trying to save a copied image (Clipboard) to my SQLite db via picturebox. For now i can copy paste an image to picturebox with this code. private void Get_Image_For_PicBox1(object sender, MouseEventArgs e)//Paste the picture to...
  4. Kostakis45

    Resolved Referencing Problem

    Hello everyone.After some organizing in my code(It WAS a mess.Everything in one file).I'm having a problem with a specific reference. To explain it with words first before jumping to code. In my main Form there is a method with KeyEventArgs so that when the Enter Key is pressed a string is gonna...
  5. Kostakis45

    Resolved Display picture from SQLite to pictureBox

    Hello everyone.I'm new here so please show some mercy on me. In my program I store some data to SQLite database in which some data are pictures which in SQLite db are stored as System.Drawing.Bitmap Picture 1 Now my main problem is that i cannot or know how to load these pictures back to...
Back
Top Bottom