Search found 214 matches
- Fri Nov 22, 2019 12:02 am
- Forum: General AmigaOS
- Topic: Home/End keys support in MultiView (text file)
- Replies: 8
- Views: 9688
Re: Home/End keys support in MultiView (text file)
I agree with Niels. In a text editor Home/End is for the current line. Ctrl+Home/End goes to top/bottom of the document.
- Tue Apr 23, 2019 9:43 pm
- Forum: General Developer Support
- Topic: radiobutton.gadget doesn't load/open
- Replies: 9
- Views: 11888
Re: radiobutton.gadget doesn't load/open
gradientslider has the same problem.
- Tue Sep 18, 2018 7:56 pm
- Forum: Platform: AmigaOne X5000
- Topic: PCIe riser
- Replies: 6
- Views: 8199
- Sun Aug 19, 2018 9:55 pm
- Forum: General Developer Support
- Topic: texteditor.gadget notifyevent
- Replies: 2
- Views: 5303
texteditor.gadget notifyevent
GA_TEXTEDITOR_AreaMarked (BOOL)
This tag will be set to TRUE when text is marked and back to
FALSE when nothing is marked.
You can create a notifyevent with this tag and let your
cut/copy buttons become ghosted when nothing is marked.
Applicability is (OM_GET, OM_NOTIFY)
How do you set ...
This tag will be set to TRUE when text is marked and back to
FALSE when nothing is marked.
You can create a notifyevent with this tag and let your
cut/copy buttons become ghosted when nothing is marked.
Applicability is (OM_GET, OM_NOTIFY)
How do you set ...
- Sat Jun 30, 2018 9:15 pm
- Forum: Platform: AmigaOne X5000
- Topic: Updater
- Replies: 6
- Views: 10954
Re: Updater
I did a fresh install for my new system. I, too, started to get the APPDIR requesters, from Updater, as well. What it turned to be for me is that my program, WorkbenchExplorer, was calling "APPDIR:LhA" to extract an archive. I hadn't run C:LhA yet so it couldn't find it in the APPDIR: "database". So ...
- Mon Jun 25, 2018 4:52 am
- Forum: General Developer Support
- Topic: Opening bsdsocket.library
- Replies: 0
- Views: 4999
Opening bsdsocket.library
I have been doing some testing with checking if my computer is online or not. I have narrowed down my issue to the opening of the bsdsocket.library.
When I have the network card installed, but the cable unplugged, boot, run my program, it gets "stuck" at the bsdsocket.library opening. I am assuming ...
When I have the network card installed, but the cable unplugged, boot, run my program, it gets "stuck" at the bsdsocket.library opening. I am assuming ...
- Thu Jun 14, 2018 4:54 pm
- Forum: Platform: AmigaOne X5000
- Topic: How to burn working boot cd from Hyperion image?
- Replies: 19
- Views: 22093
Re: How to burn working boot cd from Hyperion image?
When I started to get some video flicker at boot anim, it turned out to be the power supply going bad. I went through a nightmare dealing with that.
- Sun May 13, 2018 1:01 am
- Forum: General AmigaOS
- Topic: AmiUpdate?
- Replies: 6
- Views: 10167
- Thu May 03, 2018 12:04 am
- Forum: General Developer Support
- Topic: mailto:
- Replies: 4
- Views: 6902
Re: mailto:
Code: Select all
if ((URLLock=IDOS->Open("URL:mailto:[email protected]",MODE_OLDFILE)))
IDOS->Close(URLLock);
- Wed May 02, 2018 1:59 am
- Forum: General Developer Support
- Topic: mailto:
- Replies: 4
- Views: 6902
mailto:
To open a web link:
if ((URLLock=IDOS->Open("URL:http://www.mritter0.com/forum",MODE_OLDFILE)))
IDOS->Close(URLLock);
To open an email program via link:
if ((URLLock=IDOS->Open("mailto:[email protected]",MODE_OLDFILE)))
IDOS->Close(URLLock);
Is that how to open your email program ...
if ((URLLock=IDOS->Open("URL:http://www.mritter0.com/forum",MODE_OLDFILE)))
IDOS->Close(URLLock);
To open an email program via link:
if ((URLLock=IDOS->Open("mailto:[email protected]",MODE_OLDFILE)))
IDOS->Close(URLLock);
Is that how to open your email program ...