CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Sh_oK

Search: Search took 0.02 seconds.

  1. Replies
    14
    Views
    13,892

    Re: Using Multithreading to encrypt a file

    Sorry for the late answer, i was out of town this weekend.




    I'm doing a Masters Degree in Informatical Systems. One of my teachers of which i missed a lot of classes, gave me an assignment of...
  2. Replies
    14
    Views
    13,892

    Re: Using Multithreading to encrypt a file

    god dammit... this is starting to become too difficult for my experience level...
  3. Replies
    14
    Views
    13,892

    Re: Using Multithreading to encrypt a file

    A big problem is that the nuber of threads is allocated dinamicly, the number is not known untill runtime. how do i solve this? I was thinking of a vector<> of threads, but i couldn't find anything...
  4. Replies
    14
    Views
    13,892

    Re: Using Multithreading to encrypt a file

    Thanks JVene for the walktrough, i know that i should've start with some simpler threads first but only this evening i got this application, and i have a deadline till tomorrow, so i haven't got time...
  5. Replies
    14
    Views
    13,892

    Re: Using Multithreading to encrypt a file

    It’s an exercise (and I have to finish it in a couple of hours :) ), so the performance improvement is not the most important thing.

    The nature of the data is not specified, by I restricted the...
  6. Replies
    14
    Views
    13,892

    Using Multithreading to encrypt a file

    My problem sounds like this:

    I have to create a program that encrypts a file by taking each byte and increment it.
    The problem is that the program should use multithreading to do the actual...
  7. Replies
    7
    Views
    14,063

    Re: Updating database table from DataGridView

    Nevermind, i already fixed it.

    Here is the code if anyone encounters a similar problem:


    Public Class test
    Inherits System.Windows.Forms.Form
    Private bindingSource1 As New...
  8. Replies
    7
    Views
    14,063

    Re: Updating database table from DataGridView

    And how should i do that?
  9. Replies
    7
    Views
    14,063

    Re: Updating database table from DataGridView

    I have a composed primary key. The first 2 fields make up the primary key. It's no problem, the user can see the primary key fields.

    I tried your suggestiond but it's not doing anything. The rows...
  10. Replies
    7
    Views
    14,063

    Re: Updating database table from DataGridView

    No more password :d

    The problem is that in the datagridview, only a part of the data is displayed, according to which user is logged in. So how shoud i pass this back to the database? It somehow...
  11. Replies
    7
    Views
    14,063

    [RESOLVED] Updating database table from DataGridView

    Hi,

    On a form I have a dataGridView which displays certain data from a MySql database table. I use the following code to load the data into the DatagridView:

    Dim conn As New...
  12. Re: DataGridViewComboBoxCell SelectedIndexChanged event problem

    Hi javajawa, the problem was in the line:
    <code>DataGridViewTextBoxColumn1.DataGridView.DataSource = myData</code>

    I changed that line to :
    <code>Head_of_departmentDataGridView.Item(0,...
  13. DataGridViewComboBoxCell SelectedIndexChanged event problem

    Hello.
    I have a strange problem that i cannot solve:

    On a form I have a DataGridView. Inside this DataGridView i have several columns of which one is combobox and the others are textboxes.
    The...
  14. Replies
    4
    Views
    6,349

    Re: Cascading comboboxes inside a datagridview!

    Yes, HairyMonkeyMan. It's a cascading comboboxes inside a datagridview problem.

    GremlinSA, how do i set the process name to the correct value after i set the editable property to false? Can you...
  15. Replies
    4
    Views
    6,349

    Cascading comboboxes inside a datagridview!

    Hi!
    I have a problem with cascading comboboxes inside a datagridview. I have a DataGridView which contains the columns of a table from a MySql database. Some of these columns are foreign keys, and...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured