Search:

Type: Posts; User: Couin

Page 1 of 7 1 2 3 4

Search: Search took 0.05 seconds.

  1. Re: Changing property of group of controls ?

    Hi friends,

    Thanks for the tip, I tried to integrate these 30 other buttons but there is to much code to get all functions/subs still running :(

    I finally restored a backup copy of project lol...
  2. Re: Changing property of group of controls ?

    Hi Tabi :wave:

    I understand your idea of adding 30 other buttons but like you precised, there are the indexes and I think it will cause a lot of problems because there are a lot of things (subs ,...
  3. Replies
    8
    Views
    311

    Re: Create a group of objects at rutime ?

    Hi Phill.W,

    thanks for info, I will explore that :)
  4. Re: Changing property of group of controls ?

    Hi Tabi,

    Thanks for your help :)

    LaVolpe buttons are a very nice alternative, especially when we whant to colorize them, because original VB6 buttons won't colorize the 3D border.
    They are...
  5. Re: Changing property of group of controls ?

    About AutoDraw and ClipControls, these properties looks confusous for me :(
    I previously tried to change them between False and True for each and for a configuration (I don't remeber which sorry),...
  6. Replies
    8
    Views
    311

    Re: Create a group of objects at rutime ?

    Hi SmUX2k,

    Yes, the "With" syntax is better, I just wrote a test code to check the picturebox creation :)

    Thanks for Load tip, I was not aware of this method, it looks easier :thumb:

    For my...
  7. Replies
    8
    Views
    311

    Re: Create a group of objects at rutime ?

    In fact, it's ok from Form, but for Subs that acts on created pictureboxes (picbox), they looks unaccessible (I get a Methode or data member not found) :cry:
  8. Replies
    8
    Views
    311

    Re: Create a group of objects at rutime ?

    Hi k_zeon,

    I was just answering to myself as well as I got result with (10) in the Dim line. Thanks for confirmation :)

    Rest for the WithEvents problem but it looks not possible , having to do...
  9. Replies
    8
    Views
    311

    Create a group of objects at rutime ?

    Hi friends,

    Based on this code, I'm trying to create an array of objects at runtime, but without success :(

    Code for 1 button + 1 pictureboxe over the button :

    Option Explicit

    Dim picbox...
  10. Re: Changing property of group of controls ?

    Hi friends,

    Thanks for anwsers :)

    You're right about size calculation, I missed to edit the post but I calculate the size before the loop.
    @Elroy, I do sometimes FRM changes but in this...
  11. [RESOLVED] Changing property of group of controls ?

    Hi friends :wave:

    Is there existing another way to change a property of all controls of a group, than using a "For" loop ?
    I have a group of 30 buttons and resize them is slow (I can see that it...
  12. Replies
    11
    Views
    683

    Re: Form border mouse events?

    Hi friends :)

    Thanks for helping, that gives me good result :wave:
  13. Replies
    11
    Views
    683

    Re: Form border mouse events?

    Hi fafalone :)
    The problem is (for my app) that resizing the form, resizes also frames and a 50 buttons inside them, and it's not smooth, resultating to crappy effect while resizing, freezeing the...
  14. Replies
    11
    Views
    683

    [RESOLVED] Form border mouse events?

    Hi friends :)

    Is existing a simple mouse events listener for form border only ?
    I would detect MouseUp (or Click) on the border (where I click to resize the form), to trig a Sub on form resize...
  15. Re: Speed difference between exe and IDE ? (At least on Win10)

    Thanks for confirmation :)
  16. Re: Selecting more than 1 control in IDE on Win10 : No blue squares

    Hi,

    Thanks for infos ;)
    So I will continue to deal like I actualy do.
  17. Selecting more than 1 control in IDE on Win10 : No blue squares

    Hi friends,

    An old problem that irritate me each time, when I select more than 1 control/object in IDE, there are no the 9 blue squares around each selected controls, so, several time, once I...
  18. Re: Speed difference between exe and IDE ? (At least on Win10)

    It was especially because of the timer interval , even at "1", it's not really 1 ms but near more that 10 ms (there was a topic about timer precision for small values, when I was creating another app...
  19. Re: Speed difference between exe and IDE ? (At least on Win10)

    Oops not a good idea, takes around 4 or 5 seconds to list 421 fonts lol Returned back to loop.
  20. Re: Speed difference between exe and IDE ? (At least on Win10)

    Hello friends :)

    I managed fonts list with another method.
    I use the code from wqweto to check if font still exists at launch , and I fill the combo for list fonts after openning the "Settings"...
  21. Re: Speed difference between exe and IDE ? (At least on Win10)

    Hi freinds :)

    Thanks for answers !

    @dz32: With disabled AV , it was not changing result. Changing compilation method (P-Code, or Native Code with miscellaneous optimisation) was giving similar...
  22. Speed difference between exe and IDE ? (At least on Win10)

    Hi friends,

    I reorganizing some code parts to improve loading time.

    I noticed a difference (from simple to double) when I execute the exe, compared to running from IDE.

    I implented a...
  23. Replies
    8
    Views
    896

    Re: [RESOLVED] Combobox and mousewheel

    Hi :)

    @Dry Bone, thanks for tip, it looks running as excepted :thumb:
    @Eduardo, you are right, I tried to recreate a small project with the scrolling and combos, but I don't know why, the combos...
  24. Replies
    8
    Views
    896

    Re: Combobox and mousewheel

    Hi friends :D

    Thanks for ideas. I search some code example with SetCapture and ReleaseCapture, I found an example with a PictureBox, usine MouseMove event, but with a ComboBox, this event is not...
  25. Replies
    8
    Views
    896

    Re: Combobox and mousewheel

    Hi Dry Bone

    Thanks :)

    It's ok for unlocking the Combobox, but for locking, I must click elsewhere to fire LostFocus event.
    I'm about trying to play with MouseMove on a label placed in...
  26. Re: "Flash" on showing a form, programmatically colored

    Yes, and on the form created from copy of the other that no flashes, these properties are also set like that, and no flash.
  27. Replies
    8
    Views
    896

    [RESOLVED] Combobox and mousewheel

    Hi friends :)

    I use a frame into a frame to scroll with the mousewheel.

    In the scrolling frame, I have some comboboxes and of course, while I scroll the frame, when a combobox pass under the...
  28. Re: "Flash" on showing a form, programmatically colored

    Hi friends :D

    Sorry for delay to reply, was busy this week.

    @fafalone, I agree, it's a minor issue, but I would prefere to not having this ugly flash :D

    So, I tried with Arnouldtv's code,...
  29. Re: "Flash" on showing a form, programmatically colored

    Hi Eduardo,

    No worries, thanks for your tests :thumb:
    I'm running on Win 10. I will try on other machine, perhaps is it related with some graphic chipset ? I don't know...

    :duck:
  30. Re: "Flash" on showing a form, programmatically colored

    The video has been done with the exe created from the project (the zip file).
    I don't understand why it flashes for me but not for you.

    I created this test project because the real project...
  31. Re: "Flash" on showing a form, programmatically colored

    Hi :)
    Yes, it flashes here (not at all times but sometimes).

    It is more visible with the initial form (I made a small project with the form, but I placed VB6 CommandButtons instead of other...
  32. Re: "Flash" on showing a form, programmatically colored

    Hi Arnoutdv :)

    Thanks for answer, but I don't understand your code. Where is used Public Property Let FormBackColor(ByVal lValue As Long) ?

    Also, I had already to change backcolor in the Form2...
  33. "Flash" on showing a form, programmatically colored

    Hi friends,

    On my app, I added a form that I show from a sub.
    This form is programmatically colored (because the user can choose the color scheme).

    A lot of times, the form appears grey...
  34. Re: Conflict between 2 apps (Error 429, you do not have an approriate licence to use

    Hi Eduardo :) I also plan to keep the (nsis) installer but for tests, I only run app withouth other registerig (like portable app).
    I have to dig (but not easy, as well as I have to play with...
  35. Re: Conflict between 2 apps (Error 429, you do not have an approriate licence to use

    I do not use the installer to run my app, so it should install/register nothing, I think. I run the app from the "MMMPack" folder, givent from MMM.EXE :)

    Normally, regardless of what is...
  36. Re: Conflict between 2 apps (Error 429, you do not have an approriate licence to use

    I can get app running now without side-by-side error, after removing unused ComClass tags of unused controls (progid), and with empty descriptions in the manifest file.

    The folder with app, and...
  37. Replies
    6
    Views
    591

    Re: Which OCX provides which contol ?

    Hi friends,

    Thanks for answers :)

    I will explore to complete SamOscarBrown's project at least for common controls and visually see where OCX are used in the project (ome ones are from...
  38. Re: Conflict between 2 apps (Error 429, you do not have an approriate licence to use

    Hi Eduardo :)
    thanks for the tip ! Sio it should be a manifest file problem, if I understand well ?
    This file looks having a XML structure, so perhaps if I repalce the section related to OCX that...
  39. Replies
    6
    Views
    591

    Which OCX provides which contol ?

    Hi friends,

    Is existing somewhere, a list of which controls are provided by which OCX ?

    I mean, for example, MSCOMCT2.OCX, I have it checked in components list of my project, but I do not...
  40. Re: Conflict between 2 apps (Error 429, you do not have an approriate licence to use

    Hi,


    What is NoNo Setup?

    Also, sorry for answer delay, busy during these last times :(

    I tried MMM.exe and it look giving some result excepted if I try to include (check in the list) at...
Results 1 to 40 of 273
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width