Search results

  1. 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 :)
  2. 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...
  3. 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 :)
  4. 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...
  5. 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...
  6. 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...
  7. 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??
  8. M

    Read/Write grid settings to/from ini file

    Hi!! I have a grid in my project that must have some properties saved and loaded.. I created a sample txt file with some things that I have to save about that grid. I was wondering if it is possible to read the file doing something like this: Dim c as column for each c in columns Do...
  9. M

    Bip sound

    When my program shows some message box, a form, or simply fill a grid, a bip is heard. Is very annoying for the user :-( I already checked sound properties in control panel and my sounds are all off :-( How can I avoid this from happening??
  10. M

    For each

    In my project I have a collection with the texts to translate the controls. This collection is filled when the program starts, with a number that identifies the text, and a default text. To be easier for me, I need to do is in each form: - define all control.tag (label, checkbox, or something...
  11. M

    Signed assemblies

    Hi :) Can anyone tell me, in a simple way, what means signed assemby? Thankx ;)
  12. M

    Open help file (chm) in specific page

    Hi! Im trying to open a chm file in a specific page, but i cant find out how to do this.. In my old vb6 project I had a module with the code: I used the upgrade tool from vb.net to have an idea on how to do this and the result was exactly the same peace of code. I verified that it open the...
  13. M

    Open chm file

    How can I open a chm file? I tried the following: but nothing happened :( Does anyone knows what am I doing wrong or if there is another way to open this kind of files?
  14. M

    Print document

    Hi! Its the first time im using vb .net to an application. I need to know how can I print an htm page because everything I tried failed. Im shore Im doing something rong :( but I dont know what it is. You can see my code in the attachment. It happens that when I see the print dialog and pess...
Back
Top