Search results

  1. M

    Registry: Load, Save and Enumerate

    Thanks for all help :) I thank your help would solve my problem, but... my boss found another way to do what I need :o Thank you all... And sorry for the time you spend... I have no doubt that there will be another ocasion to practise this :)
  2. M

    Registry: Load, Save and Enumerate

    As you told me :) I took a look at that class... But all I can get (at least, what I saw) was how to get all the subkeys on current_config, current_user, etc... How do I specify a key to be seached, for example: HKEY_CURRENT_USER\Software\Settings\MyProg\Grid\Columns ???
  3. M

    Registry: Load, Save and Enumerate

    I need to do a class to write and read some specific values in the registry. That is quite simple.... What I really need to know is: - How to check if a key exists - How to check if a value exists - How to get all sub key in a single key Thanks for any help :)
  4. M

    MessageBox not defined???

    Ive done "Imports System.Windows.Forms" and now it works... I just dont understand is why didnt I need that until now... But its ok :) Works! Is what matter... Thanks a lot :)
  5. M

    MessageBox not defined???

    Ive made a module with some functions to show/handle messageboxes and their results. Ive been using this module since I started Vb.Net, in all my projects. Now I created a nes dll project and add this module, but every messagebox, messageboxbuttos or items says that they are not declared...
  6. M

    Outlook Style Controls

    Check out www.janusys.com. They are great!! :)
  7. M

    Outlook program

    I want to make my own outlook program (at my way :cool: ) but I dont know where to start! I dont know, for example, how do I connect to the server and load the emails, how should I save then to the disk.. Any help would be appreciated :)
  8. M

    Collection too slow

    Sometimes it is taking more than 2 seconds to fill a collection with 10 items, for example. I declared everything as object because this is a generic colecction wich ill use many times, to different variable types. Do U think this can be a cause? How do I use an HashTable? Im new at Vb.Net and...
  9. M

    Collection too slow

    I have two classes: Friend Class clsItem Public Sub New(ByVal objId As Object, Optional ByVal objNr As Object = Nothing, _ Optional ByVal objCode As Object = Nothing, Optional ByVal objDesc As Object = Nothing) Try Id = objId Nr = objNr Code = objCode...
  10. M

    Click and DoubleClick

    My only problem using SelectedIndexChanged (or stg like that) is that I dont wanna show the detail window if the user is navigating in the grid with the keybord. But... If I can find a way to know if it was a click or a keypress........ It would be great!! Does the sender object gave me that...
  11. M

    Click and DoubleClick

    Yes.. Let me try to explain what happens... If I have no breakpoints: - If I doubleclick and there are no details to show it shows the main windows as supposed to (and also a message just to indicate that it was a double click) - But, if I double click and there are details to show it...
  12. M

    Click and DoubleClick

    The code is the following:Private Sub gdxSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles gdxSearch.Click If (gdxSearch.HitTest = GridEX.GridArea.Cell) Then msSelectRow() End If End Sub Private Sub gdxSearch_DoubleClick(ByVal sender As Object...
  13. M

    Click and DoubleClick

    Hi! I hope you can help me somehow, because I have a big, big problem... I have a grid with some rows. When I click a row my program must verify if there are some specific (important) details for the selected guest (row). If there are, it must show the details window. When I double click a row...
  14. M

    ProductName, ProductVersion, etc

    I dont care if I have to get that information from the assembly or from some other method.. What I want is the correct info.. How do I get the info from the assembly file?
  15. M

    ProductName, ProductVersion, etc

    Thats what im trying to do. Inside the dll im trying to get that values, but instead of dll information, im getting the test project information.
  16. M

    ProductName, ProductVersion, etc

    Ive made a dll, wich will be oppened by our main application. His main form have a about button. What I an trying to do is get the product name, etc, by using Application.ProductName... But i realised that with this ill get the main project properties. I dont want that :-( How can I get the...
  17. M

    Object reference not set to an instance of an object

    :confused: I have nothing in load event.. Ive created a LoadValues procedure to prevent that from happening. That procedure is called only when the form (wich contain the control) displays. I put messageboxes in new and initialize procedures, and I still couldnt see where the error is...
  18. M

    Object reference not set to an instance of an object

    I made that user control inside my project..
  19. M

    Object reference not set to an instance of an object

    Yes marble_eater, this is happening when I drag it out from the toolbox :( My project is a simple windows application (in vb.net) with some forms and user controls. What I dont understand is why do I get an error with just one of the user controls. The others are ok. All of them have the same...
  20. M

    Object reference not set to an instance of an object

    I have a project with many user controls. What I need to do is insert some of them in a form. For some reason I cant insert one of them :( It gaves me an error (attached) What am I doing wrong??
Back
Top