Search results for query: *

  1. H

    List Oracle Servers

    Hi, In my project i need to list the Oracle servers prevailing in a network and its Databases in a dropdownlist box. Need in Urgent, Thnx in Advance. Vidhya
  2. H

    Compare two DataTables

    Hi, In my project i need to compare two datatables which two would contain more than 2 lakhs of record. How do i compare these two efficiently without consuming much time. Need very urgent, Thanx in advance, Vidhya
  3. H

    how to convert dll to a project

    Hello all, I'm having a dll. how do I need to convert dll into a seperate project? Need in urgent, Thnx in advance, Vidhya
  4. H

    Error Creating Window Handle

    Hi, Keeping all panels in One Form makes it heavier and heavier when i need to create more Panels in future. Thanks and Regards, Harvid
  5. H

    Error Creating Window Handle

    Hi Badger, In my Main Form, i'm having a default panel (pnlMain) and 15 to 20 buttons In each button click, i'm displaying the respective panels in place of default panel in Main Form. Like this, private void btnFirst_Click(object sender, System.EventArgs e) { FrmFirst ObjFirstForm = new...
  6. H

    Error Creating Window Handle

    Hi, I'm my project i'm getting "Error Creating Window Handle" message on continuous button Click. I haven't used MDI forms. Instead i'm displaying Panel( Includes all controls similar to displaying a form )for each and every button Click. I'm not able to dispose a panel cos i'm calling one...
  7. H

    Target Invocation Error

    Hello all, I have developed my project in the following environment ( VB.NET) Microsoft development environment - 2002 Microsoft .net framework - 1.0.3705 Backend - Sql Server 2000 In my project i'm experiencing exception throw "Exception has been thrown by the...
  8. H

    Framework issue

    I have developed my project in the following environment Microsoft development environment - 2002 Microsoft .net framework - 1.0.3705 Then i compiled the version of .net framework to 1.1.4322. Most of the codings doesn't support the new version of framework ,but it works fine with...
  9. H

    Threading problem

    The thread doesn't run till the application exit, it will run only once and stops( suppose in button click ). Is there any way to run continuosly? How to incorporate a system.threading.timer class in my project such a way that the Savememory procedure run simultaneously with my application...
  10. H

    Threading problem

    hello, In my project i'm having a seperate class(Memory) for reducing the memory consumption function. I'm not able to create and start the threading concept. I used the following coding to create the thread but it shows me an error in the addressof operator stating that " Signature of...
  11. H

    MemoryMappedFileStream

    In my project i'm using more than 100 forms. Memory mangement is a big problem. Whenever i open a form the memory gets accumulated and it is not releasing the memory after i close the form. i have tried close(), dispose(), finalize() but the memory issue still exists. I have utilized the Win32...
  12. H

    memory management

    hi, i have seen some solution in the below said url, but this solution suits my problem http://support.microsoft.com/kb/825680#kb3 My problem states "Virtual Memory Low" but the url info explains about " Out of Memory Exception Errors May Occur When Significant Amounts of Physical Memory...
  13. H

    memory management

    I have already tried that experiment and it works as u said, but it is not actually my requirement. As i close the opened form the memory consumption doesn't reduced to the original memory consumption regards harry
  14. H

    memory management

    Is there any command in vb.net similar to unload in vb i have tried close(), dispose(), gc.collect() but memory won't release dratically pls suggest any solution regards harry
  15. H

    memory management

    i'm not clear with your last line i don't know to design apps in such a way that it is acceptable for the objects to sit in memory for a time before they are terminated. pls help
  16. H

    Idisposable interface

    Hello i don't know how to use Idisposable interface in my project. pls give a suggestion to write code using Idisposable interface and to dispose the object used using this interface thanx
  17. H

    memory management

    i have studied the memory status of my project 1. Before launching project - 224Mb 2. After launching project - 235Mb 3. Loading Form2 - 254Mb 4. Closing Form2 - 253Mb 5. Application exit - 224Mb The memory doesn't change drastically to 235Mb After closing Form2 i need to switch over from 254Mb...
  18. H

    memory management

    In vb.net if i open a single form in my application ,the memory gets increased ,likewise when i close the form the memory is not getting released why so? I want to release the memory.Is there any way to clear off the memory once i close the form? The memory gets accumulated whenever i close...
Back
Top