Search found 1109 matches

by Randy Walker
Fri Oct 24, 2025 8:26 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Boy, Do I know how to generate code? Or what?
I ask one dumb question and get 2 pages of sample code. :mrgreen:
Thank you very much for sharing all that brain power!!
by Randy Walker
Thu Oct 23, 2025 10:48 am
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

mk-soft wrote: Thu Oct 23, 2025 8:00 am

Code: Select all

Macro DeleteGadgetItem(Gadget, Item)
  RemoveGadgetItem(Gadget, Item)
EndMacro
Duhhhh <<THats Duh as in "Dummy me". :oops:
Will have to test that out...
by Randy Walker
Thu Oct 23, 2025 12:23 am
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Simple enough to AddGadgetItem, so just seems to me we need a DeleteGadgetItem just to balance the scale. :?
by Randy Walker
Thu Oct 23, 2025 12:18 am
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Now we're getting down right complicated... Just to allow user item line delete. :shock:
by Randy Walker
Wed Oct 22, 2025 9:52 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

OHhhh Ok. I didn't even notice that AddKeyboardShortcut in there. I did wonder why there was a windowtimer in there. Still don't really understand why it was necessary.
by Randy Walker
Wed Oct 22, 2025 8:16 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Hi Rashad... Works great (as usual) , but can you explain the "Case 10"? Where did you get "10" from?
by Randy Walker
Tue Oct 21, 2025 7:21 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Andre wrote: Mon Oct 20, 2025 8:43 pm Example added to the docs :)
Fantastic! Thanks Andre! ⭐⭐⭐⭐⭐
by Randy Walker
Tue Oct 21, 2025 7:17 pm
Forum: Feature Requests and Wishlists
Topic: [Done] Add sample code for RemoveGadgetItem Please
Replies: 2
Views: 367

Re: Add sample code for RemoveGadgetItem Please

Andre wrote: Mon Oct 20, 2025 8:46 pmAdded :)
Wow!, cool. Very cooll. 👍👍
by Randy Walker
Fri Oct 17, 2025 10:32 pm
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 674
Views: 694011

Re: Good Freeware Stuff

This guy has some interesting finds if you are into hardware monitoring:
https://www.youtube.com/watch?v=xyPY9_h4vZs
by Randy Walker
Thu Oct 16, 2025 8:21 pm
Forum: Feature Requests and Wishlists
Topic: [Done] Add sample code for RemoveGadgetItem Please
Replies: 2
Views: 367

[Done] Add sample code for RemoveGadgetItem Please

All in favor of adding spikey's code sample to the Help doc for RemoveGadgetItem where there is no sample code now, Add reply here...
Here is spikey's code: viewtopic.php?p=646640#p646640

And Thank You!!!
by Randy Walker
Thu Oct 16, 2025 8:14 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Mindphazer wrote: Thu Oct 16, 2025 1:07 pm @spikey
Very nice !
I double that. OKay then... Fred should put spikey's snippet into the Help doc under RemoveGadgetItem since there is no sample code there now. Yeah Yeah!! That would be great! Thanks Fred!!!
by Randy Walker
Thu Oct 16, 2025 7:48 pm
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?

Mindphazer wrote: Thu Oct 16, 2025 8:12 am The same code, but cross platform :
Tested on Win 11 and works great. Thank you for the contributuion Mindphaser!!! Fred should add that snippet to the Help doc.
by Randy Walker
Thu Oct 16, 2025 5:47 am
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

Re: (end)User Friendly Way to delete ListIconGadget line?

BarryG wrote: Thu Oct 16, 2025 5:23 am For Windows you can do it like below. Change #WM_KEYDOWN to #WM_KEYUP if you don't want the user to hold down the Delete key.
Ok, Your way is much cleaner than the method I figured out above. Thanks BarryG
by Randy Walker
Thu Oct 16, 2025 4:50 am
Forum: Coding Questions
Topic: [SOLVED] (end)User Friendly Way to delete ListIconGadget line?
Replies: 24
Views: 1003

[SOLVED] (end)User Friendly Way to delete ListIconGadget line?

I have a populated listIconGadget() Where I would like to allow the user to select a line and press Delete to remove that line. Is there any way to do that without a callback? (What a Pain!) We can use the following for sample purposes:

If OpenWindow(0, 100, 100, 300, 220, "ListIcon Example", #PB ...