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

Search:

Type: Posts; User: andysubbu

Search: Search took 0.03 seconds.

  1. Re: Implementing select all using Checkboxes

    I got this fixed by putting some flags and coding. If there is an efficient I would love to hear that... Here's the snippet



    'Check2 = Select All
    'Check1 is a control array

    Dim check2flag...
  2. Implementing select all using Checkboxes

    I have a form where there are various checkboxes (control array) and another check box which is "Select All".

    When I check the Select all checkbox all the checkboxes get checked and when i uncheck...
  3. Replies
    1
    Views
    678

    Checkbox treeview question

    I have a treeview with checkbox. When i check the parent i would like the child nodes to be checked and when parent is unchecked the child nodes should get unchecked. How can I do this?

    Appreciate...
  4. Replies
    7
    Views
    1,243

    Re: Check for existing file before saving

    I am not sure if I had phrased my question properly. This is my requirement

    When i click the SAve button on the form, the File Dialog opens. When the user enters a file name to be saved as, I...
  5. Replies
    7
    Views
    1,243

    Check for existing file before saving

    I have an application that opens a File Dialog. The dialog is opened as

    FileDialog.showsave

    If the user selects an already existing file I would like to prompt the

    Overwrite? Y/N message...
  6. Replies
    3
    Views
    3,495

    Re: problem creating a word document

    Thanks that was helpful. Problem is resolved
  7. Replies
    3
    Views
    3,495

    problem creating a word document

    I want to print a report and the output is a word document.


    Dim oWord As Object
    Dim oDoc As Word.Document
    Dim sFileName As String
    sFileName = App.Path + "\test.doc"


    ...
  8. Replies
    5
    Views
    10,491

    Re: Object was unloaded - Help

    Thanks Comintern, this was helpful.
  9. Replies
    5
    Views
    10,491

    Object was unloaded - Help

    I have a form A that is loading another form B. While loading the form i trap an error and i want to stop loading the form. So i use 'unload me (B)' and now the form A throws 'Object was unloaded'.
    ...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured