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

Search:

Type: Posts; User: DeafBug

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    607

    Yes, it helps. But WHY? Who in the world...

    Yes, it helps.

    But WHY?

    Who in the world was the first item selected = true when it shouldn't? It is not highlighted. Who did MS listen to? :mad:
  2. Replies
    4
    Views
    607

    Listview Selected Bug?

    I have done a search and didn't find what I was looking for.

    I have attached a small program to demo the bug. Just run the program and click on each button. You will know what I am talking about...
  3. Thread: networking

    by DeafBug
    Replies
    1
    Views
    721

    Well, since it is only a option toggle button. ...

    Well, since it is only a option toggle button. One radio button is for Dynamic and the other is for static in the IP dialog window. (I hope you know what I am talking about.) If you change the...
  4. I have the same problem a long time ago but I...

    I have the same problem a long time ago but I found out that if you use KeyUp or KeyDown, it will work properly. That what I use it most applications I develop here.
  5. I have tried that already. The problem is that I...

    I have tried that already. The problem is that I have different object types displayed such as textboxes, option buttons and comboboxes. I won't know which obj_Validate to call for the one that...
  6. Replies
    2
    Views
    739

    Do a search on Google. I have seen the code a...

    Do a search on Google. I have seen the code a few years ago but I have not used it myself. I can't help any further. Check with other VB discussion forums.
  7. Replies
    1
    Views
    753

    I suggest that you ditch the CR OCX file. Instead...

    I suggest that you ditch the CR OCX file. Instead use the CR Engine Object Library. When you do so, you can reference them in code like this:

    Private mCRApp As CRPEAuto.Application
    Private...
  8. Clicking on a menu item does not cause the object validate to trigger, why?

    As simple as I could put it in a VB program, the msgbox in the Validate event does not get fired when you click on the menu item "Print" which calls the Click event. I expect the Validate event to...
  9. Thread: listview

    by DeafBug
    Replies
    6
    Views
    1,063

    You can set the listview property LabelEdit to...

    You can set the listview property LabelEdit to automatic. That allows the user to edit each field.

    Here is a piece of code that I made for any recordset size or whatnot. However I use...
  10. Thanks, you gave me an idea. I made a...

    Thanks, you gave me an idea.

    I made a boolean and in the treeview gotfocus, I set it to true then in the lostfocus, set it to false

    In the usercontrol_KeyUp (KeyPress doesn't work) event,...
  11. Treeview in UserControl Return Key not responding

    I need a big help. If you open the attached file and run it. Click once on the treeview so it has focus. Now use the arrow keys and press enter key. Nothing happens.

    Stop the program and open...
  12. Replies
    1
    Views
    652

    Printer return error codes

    I tried to search for it but all were attempt to make a use of the printer.

    What I need is something to trap the printer errors. In our app, if the user clicks on the Print button and then they...
  13. Replies
    3
    Views
    1,149

    Well, after a bit of playing around. we learned...

    Well, after a bit of playing around. we learned that you MUST pass the username parameter with something instead of a null. 9x can take a null for username since the security is weak. But 2000/XP...
  14. Replies
    3
    Views
    1,149

    WNetAddConnection2 with 2000/XP

    I have done a search and still found no answer about using this API on 2000/XP.

    The application we write is in VB and running on 2000/XP, depending on the clients computer. Up until now, the...
  15. Replies
    0
    Views
    1,036

    Listview knowing the selected Index(es)

    I was using a listbox but due to the limit of the listbox. So I switched to ListView. However I can't find anything similar to what I was using for ListBox. There are two API calls that I used for...
  16. Replies
    5
    Views
    1,066

    I still need the same UI selections as the...

    I still need the same UI selections as the ListBox has. You should be able to select a number of items in sequence with the mouse. ListView doesn't allow that. You have to single click each item...
  17. Replies
    5
    Views
    1,066

    Well, I looked at the code. Notice that I should...

    Well, I looked at the code. Notice that I should have mentioned it earlier. I do make a use of ListItem, that where it stops. I suppose I can use the Key in listview so it goes far beyond the...
  18. Replies
    5
    Views
    1,066

    Thank you, I just realized that I could have a...

    Thank you, I just realized that I could have a listview instead. But I didn't try out the code yet as I had other priorities. I am sure it will be helpful. Guess I was having a DUH moment. :)
  19. Replies
    5
    Views
    1,066

    Listbox limit need unassigned

    I have a listbox that lists all the ticket numbers for the client to select. I didn't even think about the limit in VB until a client called our customer service. So I searched on Google and found...
  20. Replies
    1
    Views
    1,255

    Change Recordset Field Attribute propertyy

    How do you change the Long value of the Attribute property? I have a recordset that is the returning recordset from a stored procedure. I have another recordset that collects all the record. For...
  21. Replies
    4
    Views
    1,573

    Re: Dynamically Add Tabs to Tabstrip

    Sorry for being gone too long. I had all the objects designed on all the tabs individually. But your case is using forms instead, not sure how to load it separately especially with tabs. I founded...
  22. Re: SSTab on ActiveX control and cmdButton.Cancel =True doesn't work

    Thanks for the help. However it didn't quite work. So I tried something else that solved the problem for reason unknown to me. If you add a underscore making it a hot key (with &) on the tabs...
  23. Replies
    22
    Views
    2,804

    Re: VB6 and WindowsXP

    No I haven't tried VB in XP but I do have XP Pro installed on one of my partitions as I use BootMagic.

    I think it is alright. But I hate the new UI look. However I did control just about...
  24. SSTab on ActiveX control and cmdButton.Cancel =True doesn't work

    I have a SStab on an UserControl. The UserControl has DefaultCancel = True. Now when you drop that UserControl on a dialog box. The Cancel button on the dialog box has the property Cancel = True. ...
  25. Replies
    1
    Views
    745

    Re: Crystal report Printing

    I am taking a wild guess here. Crystal reports prints out a full page every time no matter what. The information it gets is from the Printer object.

    Since you are printing off from a roll. ...
Results 1 to 25 of 49
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured