dynamicboy

Results 16 issues of dynamicboy

Version: 2.8.8.1 Detail: Double clicking the text of a button and togglebutton does not raise the OnDoubleClick event, but the space between the text and the border does. Step 1:...

I am creating an application to split long images. I add labels through code to display the sub-images. When I choose another long image, these labels need to be removed...

Version: 2.8.8.1 Details: Couldn't find a way to remove image of label. Step1: Drag one label, two buttons onto the form. Step2: Input code as below: ```Small Visual Basic '------------------------------------------------...

Version: 2.8.8 Details: Step1: Drag a label onto the form Step2: In order to see the region of the label, set the background color to a non-transparent color. Step3: In...

Version: 2.8.8 Details: Step1: Drag a label and a button onto the form Step2: In order to see their region, give them a visible solid border color, bigger fontsize (16)...

Version: 2.8.7.5 The Sound.Play function couldn't resume the mp3 where it's been paused; it just replays the mp3 from the very beginning.

Version:2.8.7.5 Details: If I drag a flow chart or geometric shape onto the form, then I can't launch the form; it's behind the purple surface. Screenshot: ![2024-01-01_040502](https://github.com/VBAndCs/sVB-Small-Visual-Basic/assets/7421525/75922d10-4c8f-4098-9161-f0117ddc93cc)

Verrsion: 2.8.7.5 Details: Step1: In Form Code, input some code as below: ```Small Visual Basic Me.OnKeyDown = Form1_OnKeyDown Sub Form1_OnKeyDown TW.WriteLine("Time: " + Clock.ElapsedMilliseconds + ", You pressed " +...

Version: 2.8.7.5 Details: Step 1: Drag a textbox from the toolbox to the form Step 2: Set the Forecolor to a gradient color Step 3: Run the application Step 4:...

Version: 2.8.7.5 Details: Step1: Drag a togglebutton from toolbox to form. Step2: In Form Code,input code as below: ``` ToggleButton1.OnClick = LookCheckedState Sub LookCheckedState TW.WriteLine(ToggleButton1.Checked) EndSub ``` Step3: Click Run...