Search found 266 matches: achieve

Return to advanced search

xbrowse (likely a custom table) whose contents change dynam

... If checkboxes are unchecked, the radio menus related to those checkboxes disappear. The xbrowse is adjusted back to its initial state. To achieve this, you likely need to: https://forums.fivetechsupport.com/viewtopic.php?f=45&t=44481 Listen to Checkbox Events: Attach JavaScript event ...
by Otto
Sat May 04, 2024 7:42 am
 
Forum: mod_harbour
Topic: xbrowse (likely a custom table) whose contents change dynam
Replies: 0
Views: 61

Re: Servidor de mail propio y acuse de ENTREGA.

... specific settings or restrictions in place. Additionally, some users might have opted out of sending delivery notifications. I hope this helps you achieve your goal!
by Antonio Linares
Mon Apr 22, 2024 4:58 am
 
Forum: Off Topic / Otros temas
Topic: Servidor de mail propio y acuse de ENTREGA.
Replies: 2
Views: 360

Re: FWErrorsys()

... ) From this, I understand that when an error occurs, you want MyFunc() should be executed first and then invoke the FWH ErrorDialog. We can achieve this without modifying errsysw.prg Please try this sample: #include "fivewin.ch"function Main()   local bFwErr  ...
by nageswaragunupudi
Wed Apr 03, 2024 11:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1849

DATEPICKER

... me a little hint. I was wondering if there is a way to set minimum and maximum and leaving the dates out of this range disabled also visually...to achieve kind of this look https://mybergland.com/ruth/datepicker_min_max.png this is my datepicker right now: REDEFINE DTPicker oCal1 VAR ...
by Ruth
Mon Feb 26, 2024 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DATEPICKER
Replies: 4
Views: 227

Re: Data exchange between PC and Android device on the same loca

Arturo, his source code originates from one of my posts dated October 14, 2018—long before the introduction of Mod Harbor. Now, you can achieve the same results with Mod HARBOUR. I provided the link to illustrate the server hardware we utilize. As mentioned in the most recent post, we are ...
by Otto
Sat Feb 24, 2024 12:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 827

Re: Strange characters going from FWH to Outlook FWH 13.10

Dear Michel, We never managed to achieve a good conversion with the built-in code tables. Therefore, we created various functions. You could build one according to this scheme. Best regards, Otto function convertXML2( cVData, aufruf )  ...
by Otto
Mon Feb 19, 2024 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3781

Re: RC to PRG generator

Can you show a sample of what you want to achieve exactly?
by Enrico Maria Giordano
Mon Feb 12, 2024 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1242

Re: IS IT POSSIBLE TO MAKE THIS CONTROL

... reprogram FIVEWIN from the traditional Windows API (WinAPI) to WinUI, which is the latest and most modern user interface library for Windows, to achieve nearly the same results on the desktop. Best regards, Otto
by Otto
Fri Feb 09, 2024 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IS IT POSSIBLE TO MAKE THIS CONTROL
Replies: 16
Views: 832

Re: Mark field as required

Hello, In my case I had to modify the TGet class to achieve the desired effect. What effect? Well, some Gets were mandatory for the user to fill in and so those Gets are marked with a little triangle indicating their obligation when they are empty. ...
by paquitohm
Sun Feb 04, 2024 9:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mark field as required
Replies: 23
Views: 1785

Re: future of Rich Text Editor maybe time to start with WEBVIEW

... the desktop versions. I am convinced that if people repeatedly see the examples and the problems, like how difficult, if at all possible, it is to achieve similar results with desktop tools, then the desire for WEBVIEW solutions will grow. If someone asks, then I immediately send all my sources. ...
by Otto
Thu Jan 25, 2024 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: future of Rich Text Editor maybe time to start with WEBVIEW
Replies: 19
Views: 1720

WEBVIEW2 oPrn:PrintTable() alternative

... you can create highly dynamic and customizable print documents. I now have a static hash xReport[] and can define the reports from there. To achieve the functionality of oPrn:PrintTable(), only a few parameters are required. I will gradually expand xReport. Since I receive no echo here in ...
by Otto
Fri Jan 12, 2024 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WEBVIEW2 oPrn:PrintTable() alternative
Replies: 0
Views: 648

Re: copy a row of xbrowse

... control in Harbour with FiveWin, you need to modify your `Copy` and `Paste` functionalities to handle multiple rows. Here is an approach to achieve this: 1. **Modify Copy Functionality**: Instead of copying a single row to `aCopy`, copy all selected rows. You can use a loop to go through ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5832

Re: App Termination and Relaunch.

You can also achieve the termination and relaunch of your application using a batch file in Windows. Here's a simple example of how you can create a batch file to do this: 1. Create a text file with a `.bat` extension, such as `restart_my_app.bat`. ...
by Antonio Linares
Fri Oct 06, 2023 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 413

Re: App Termination and Relaunch.

Yes, in Windows programming, you can terminate your application and then immediately relaunch it. There are several ways to achieve this, but one common approach is to use the `ShellExecute` function or the `CreateProcess` function to start a new instance of your application from within ...
by Antonio Linares
Fri Oct 06, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 413

Re: How To Change Globally GET Text color when it is focused

... GET Un-Focus ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) } 3. READONLY GET ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) } How we can achieve this ? Thanks Shridhar Please try this small program. I used my own colors and please substitute your own colors. #include "fivewin.ch"function ...
by nageswaragunupudi
Sat Aug 12, 2023 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1573
Next

Return to advanced search