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

Search:

Type: Posts; User: Migeria

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    7,311

    Re: DataGridView click event

    Should be Solved using DataGridView.HitTest Method and checking HitTestInfo Type, which is "None" when clicked on empty space.
  2. Replies
    1
    Views
    7,311

    [RESOLVED] DataGridView click event

    It might be stupid, but is there DataGridView event reacting on dataGridView background click (place where are no elements)?
    Or do I have to use some event and check where/on what click was...
  3. Replies
    5
    Views
    4,581

    Re: new operator problem?

    I did try to use global variable,everything was correct, but I ended up failing 'cause of my royal stupidity.
    I was coding one part, but inputing information through other way ~_~

    Thanks Fcronin,...
  4. Replies
    5
    Views
    4,581

    [RESOLVED] new operator problem?

    namespace ...
    {
    public partial class Form1 : Form
    {
    .
    .
    private void textBox1_DragDrop(object sender, DragEventArgs e){
    string[] failas = (string[])e.Data.GetData(DataFormats.FileDrop);
    ...
  5. Replies
    5
    Views
    1,543

    Re: Exclude checked lines from file

    Oh.. I use tag array in my code :D I edited it before posting here and didn't see that I left it to be.
    As for int array indexes, I was planing to store not checked items indexes for later removal,...
  6. Replies
    5
    Views
    1,543

    Re: Exclude checked lines from file

    array<String^> ^ lines;
    private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) {
    String ^ file("tags.db");
    if(!File::Exists(file))
    {
    IO::FileInfo ^ duomf =...
  7. Replies
    5
    Views
    1,543

    [RESOLVED] Exclude checked lines from file

    tags.db


    asd||$|blah
    qwe||$|jack daniels
    zxc||$|exam
    qaz||$|fail


    checkedListBox1 items
  8. Replies
    4
    Views
    5,752

    Re: [RESOLVED] string positions

    ah.. I thought Array::Length returns how many symbols there are in whole array xD so I excluded it from possible variants.
    Seems I mixed up what is element and what's dimension (~_~')
  9. Replies
    4
    Views
    5,752

    Re: string positions

    And that was soooooo simple (~_~) thanks, that worked perfectly (^-^)b

    After getting array from line, I wanted to get rid of 0 dimension (or is it element??? well, first part of after Split()).
    I...
  10. Replies
    4
    Views
    5,752

    [RESOLVED] string positions

    I have file looking something like this


    qwe||$|aa|$|bgb|$|
    asd||$|bab|$|adw|$|
    zxc||$|ccd|$|wda|$|


    This code should is supposed to show me a messagebox with content of strings between...
  11. Replies
    7
    Views
    8,782

    Re: [RESOLVED] checkedlistbox remove

    Now that was easy to understand ^-^
    I thought that {} could be used only with conditions, loops, function, classes, structures and so on~~~~

    G**gle word is evil itself =D 'cause sometimes it...
  12. Replies
    7
    Views
    8,782

    Re: [RESOLVED] checkedlistbox remove

    could you explain or show example of what is "uncontrolled {}".
    I think I got it wrong, but I can't find any reference on G**gle.
  13. Replies
    7
    Views
    8,782

    Re: checkedlistbox remove

    Thanks for both of you :D Since I'm not native English speaking person, it took some time to get what I should do, but well... in the end I succeeded Y(^-^)Y

    So thats how those drugs for headache...
  14. Replies
    7
    Views
    8,782

    [RESOLVED] checkedlistbox remove

    I'm trying to remove selected items. So far I'm at


    if(checkedListBox1->CheckedItems->Count != 0)
    {
    String ^ checked;
    for(int i = 0; i < checkedListBox1->CheckedItems->Count;...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured