PROCEDURE CreateURLShortcut(cFileName, cURL)
This worked perfectly - Thanks.
Search found 201 matches
- Mon Feb 10, 2025 2:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Create shortcut for accessing URL
- Replies: 5
- Views: 1771
- Sat Feb 08, 2025 11:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Create shortcut for accessing URL
- Replies: 5
- Views: 1771
Re: Create shortcut for accessing URL
I noticed that all three of us on this thread joined the FiveTech forum in October 2005.
That's a testament to how good the Fivewin libraries and community are.
I feel privileged to be part of it.
Sincerely, Don
That's a testament to how good the Fivewin libraries and community are.
I feel privileged to be part of it.
Sincerely, Don
- Sat Feb 08, 2025 11:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Create shortcut for accessing URL
- Replies: 5
- Views: 1771
Re: Create shortcut for accessing URL
Thanks for the suggestions.
I'll test them on Monday.
Antonio, it's good to hear from you. I hope all is well with you and yours.
Don
I'll test them on Monday.
Antonio, it's good to hear from you. I hope all is well with you and yours.
Don
- Sat Feb 08, 2025 6:25 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Create shortcut for accessing URL
- Replies: 5
- Views: 1771
Create shortcut for accessing URL
I'm trying to create a Windows shortcut in Harbour for accessing a URL with my browser.
Has anyone had success doing this?
Thanks in advance for any assistance.
Has anyone had success doing this?
Thanks in advance for any assistance.
- Tue Sep 20, 2022 4:12 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Vertical and Horizontal Scroll Bar Processing
- Replies: 2
- Views: 375
Vertical and Horizontal Scroll Bar Processing
Is there a way with Fivewin to build a dialog with automatic vertical and horizontal scroll bar processing that moves the display area as scroll bars are clicked?
- Tue Jul 21, 2020 4:41 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: error handler acting odd
- Replies: 3
- Views: 482
Re: error handler acting odd
I found my problem thanks to your help, Antonio.
I trust all is well with you and wishing you the best.
Thank you.
Don
I trust all is well with you and wishing you the best.
Thank you.
Don
- Mon Jul 20, 2020 10:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: error handler acting odd
- Replies: 3
- Views: 482
error handler acting odd
My error handler seems to be odd.
this just recently began.
It's not staying set on my default handler.
Is there a way to view the current error handler's target function it is currently set to?
Windows 10
MS-Visual C++ version 19
Harbour 3.2.0
FWH1095
the only thing different in my environment ...
this just recently began.
It's not staying set on my default handler.
Is there a way to view the current error handler's target function it is currently set to?
Windows 10
MS-Visual C++ version 19
Harbour 3.2.0
FWH1095
the only thing different in my environment ...
- Thu Jun 04, 2020 2:39 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: print a text file
- Replies: 1
- Views: 501
print a text file
What's the easiest way to print a text file?
if 1st select one of several printers - then I need to output a pre-formatted text file to the selected Windows Printer.
Suggestions?
thanks in advance.
Don
if 1st select one of several printers - then I need to output a pre-formatted text file to the selected Windows Printer.
Suggestions?
thanks in advance.
Don
- Sat Mar 14, 2020 10:48 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: time with milliseconds
- Replies: 3
- Views: 679
Re: time with milliseconds
Many Thanks.
- Sat Mar 14, 2020 1:48 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: time with milliseconds
- Replies: 3
- Views: 679
time with milliseconds
Does a function exist which returns the time with milliseconds?
- Mon Nov 25, 2019 5:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Paste values into Password Protected Get Objects
- Replies: 6
- Views: 1681
Re: Paste values into Password Protected Get Objects
Yeah,
That's why we re-wrote it as shown above.
hopefully all is solved.
Respectfully,
Don.
That's why we re-wrote it as shown above.
hopefully all is solved.
Respectfully,
Don.
- Tue Oct 15, 2019 8:14 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Paste values into Password Protected Get Objects
- Replies: 6
- Views: 1681
Re: Paste values into Password Protected Get Objects
The posted sample did not work for me.
However, the class below takes care of the problem for me.
********************************************************************************************************************
//** REFRESH PASSWORD ON PASTE - WITHOUT REFRESH PASSWORD IS SHOWN IF PASTED
CLASS ...
However, the class below takes care of the problem for me.
********************************************************************************************************************
//** REFRESH PASSWORD ON PASTE - WITHOUT REFRESH PASSWORD IS SHOWN IF PASTED
CLASS ...
- Tue Oct 15, 2019 6:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Paste values into Password Protected Get Objects
- Replies: 6
- Views: 1681
Re: Paste values into Password Protected Get Objects
I've created an subordinate extension from the TGet class that I use.
All of my screens are dynamically generated and this one exception might be dangerous.
Is there a method I can "pirate" from the EDIT control to compile in my sub-ordinate TGet class that will resolve this for now?
All of my screens are dynamically generated and this one exception might be dangerous.
Is there a method I can "pirate" from the EDIT control to compile in my sub-ordinate TGet class that will resolve this for now?
- Fri Oct 11, 2019 9:52 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Paste values into Password Protected Get Objects
- Replies: 6
- Views: 1681
Paste values into Password Protected Get Objects
I have used fwh 1302 for many years until recently, when I upgraded to fwh 1905.
I found a difference when specifying lPassword := .t. on a tget() object.
If I paste a value into the "masked" get-object created with the 1302 version, no problem. The get displays all asterisks, but contains the ...
I found a difference when specifying lPassword := .t. on a tget() object.
If I paste a value into the "masked" get-object created with the 1302 version, no problem. The get displays all asterisks, but contains the ...
- Thu Aug 01, 2019 1:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TMultiGet wrap text
- Replies: 2
- Views: 460
Re: TMultiGet wrap text
I discovered that the class variable ::lHScroll controls the wrapping.
if ::lHScroll is .f. - automatic word wrap - this is the default
if ::lHScroll is .t. - no word wrap
if ::lHScroll is .f. - automatic word wrap - this is the default
if ::lHScroll is .t. - no word wrap