Search results for query: *

  • Users: JFK
  • Order by date
  1. J

    Nero WaveEditor automating

    Hello, I'd like to automatize using installed Nero WaveEditor for analyzing and removing noise from more wav files. Doesn't anybody know, how to do it through COM? (Which .dll should I to use in references, how to declare and use Nero WaveEditor object etc.). Is it at least possible to do it...
  2. J

    Visual Studio 2005 - code hiding feature in VB

    Yes, exactly! But why is not available right now? I can answer myself: Because of Microsoft :-))
  3. J

    Visual Studio 2005 - code hiding feature in VB

    to Cjard... You must use Ctrl+M and Ctrl+H in (quick) sentence to hide some lines of code (in VS 2003). Any other outlining of subs, functions etc. works good for me. I'm missing possibility of hiding of code parts like for, until, if-then blocks and so on... Best regards. #JFK
  4. J

    Visual Studio 2005 - code hiding feature in VB

    Yes, but in 2003 version it could be possible to hide any part of code you want. Using region is OK, but you cannot use it inside the sub, function etc. I dont really understand, why should Microsoft remove this functionality. Is it forcing us to use another programming language?! (In C language...
  5. J

    Visual Studio 2005 - code hiding feature in VB

    Does anybody know, why is not available hiding code (Ctrl+M, Ctrl+H) in Visual Studio 2005 - Visual Basic even thought it was available in previous version (VS2003)? It is even described in msdn manual: Not available in Visual Basic. Thanks for any responce... #JFK
  6. J

    how to declare MyTreeNodeCollection Class

    Solution Thans a lot for your answer, fortunately I have already solved this problem. I found on address: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbtsksubclassinglistitemortreenode.asp proper information and realised, that it is not neccesary to make new...
  7. J

    how to declare MyTreeNodeCollection Class

    Hi to all, I have a lot of additional information about my TreeNodes, which I am storing in extra array. Because it's not too comfortable and quick to search information every time I wanted to find something about TreeNode, I decidet to make my own TreeNode class and add some own properties...
  8. J

    TextBox offering functionality

    Thank for your suggestion. I'm going to check it... #JFK
  9. J

    TextBox offering functionality

    Hi to all, I need some advice. In my application (VB.NET) I need to make TextBox control, which should offer already existing values to user. For instance: in my database already exist values "ahead", "already", "animal", "anything". While user is writing down "a" into TextBox, it offers...
  10. J

    MenuItem.Name in VB.NET

    Yes, its clear now. I evaded it by making my own MenuItem class, which has one more property to store data (name) instead of Name property. Thanks for your explanation. Regards #JFK
  11. J

    Closing form while opening

    :-) Thank You for your effort, but I have already solve it. This could be OK, but I have already designed my MenuItems (in design time), so I should make all my menus again and it could be more work for me. The easiest way for me was to make my own Class (as I mentioned above) and add one...
  12. J

    Closing form while opening

    But if you run this, You'll see, that there are no Controls with this type, even there is a MainMenu on the Form. Did you try it? :-) Regards. #JFK
  13. J

    Closing form while opening

    I cant use Text property, because I am using more than one MenuItems with the same Text value. Of course, I can use another Text for another MenuItems, but it is a limitation for me and I dont like it, because it is not a system solution. First of all I cant understand, why I'm not able to make...
  14. J

    Closing form while opening

    All my problems began, becouse I have to convert my workmate application (written in VB6) and improve it in VB.NET. He (my workmate) has already made functions for checking users rights. But by my opinion, I can idenfity specific MenuItem object only at design time. Is there realy way, how to...
  15. J

    Closing form while opening

    Thanks a lot! I very appreciate your goodwill. Your example application is clear. By my opinion, it is pity, that only property of MenuItem, that you can use for identify particular MenuItem object is its Text property. In VB6, i think, it was better. Your sample code was helpful for me in...
  16. J

    Closing form while opening

    Yes, it seems, that I'll have to do that this way. Are you dynamicly creating whole menus from DB records, or only permissions (enabling/disabling) of menus? Can you show me some (abbreviated) example? Thanks. #JFK
  17. J

    Closing form while opening

    Tag property instead of Name property I thought about using Tag property instead of Name property too, but it seems, that there isn't this property of MenuItem object. How can I set Tag property of MenuItem object? my code: Sub Menu_pristupy() Dim Podmenu As MenuItem Dim Menu As Menu...
  18. J

    MenuItem.Name in VB.NET

    How can I get Name property of MenuItem object in run time? Now I am only able to get Text and other properties, but not Name... for more details please see last post in: http://www.vbdotnetforums.com/showthread.php?t=6615 Thanks. Regards #JFK
  19. J

    Closing form while opening

    Thanks. I'm trying to check for users rights and enabling/disabling menus, but I have new problem: I have two kinds of MenuItems. First one are Menus generaly accessible for all users. Those are begining with "mnu". Second one are Menus, which I want to check for rights. Those are begining...
  20. J

    Closing form while opening

    I need solve problem with my MDI and child forms. When user select (thru menu), which child form he wants to show, I would like to check, if user has permission for it. If not, dont want to show child form. I'm not shure, that I am going the right way, but in VB6 it worked OK. Not in VB.NET...
Back
Top