topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Can not create dialog 7.11 | No borland control's.
I try to use in most dialog's the same procedure
First , in main , a MDI window is opened in a global var ownd. Other modules have GLOBAL EXTERNAL oWnd
When in the menu is choosen to edit a dbf , a dialog from oWnd (no wait clausule)with xbrowse is opened to choose the record. This can be done... |
Can not create dialog 7.11 | Frank,
Please post the RC source for RESOURCE "INVLEV"
Also please remove NOMODAL, just for a test, and lets see if that makes a difference. Thanks |
Can not create dialog 7.11 | Frank,
Could you recompile FWH 7.10 PRGs with the xHarbour build used with 7.07 and build your EXE again ?
Or recompile FWH 7.07 PRGs with current xHarbour build. Both tests are fine.
Just to check that it is not a xHarbour related issue, thanks |
Can not create dialog box (tsbrowse) | Hola foro, estoy migrando mi aplicación de clip53+fw2.0 a harbour+fwh.
Me encuentro con el horrible error que pongo en el título y me lo produce el control tsbrowse.
AQUI VA EL .RC que uso.
PIDEUSU DIALOG 65, 46, 276, 208
STYLE DS_MODALFRAME | 0x4L | WS_POPUP | WS_VISIBLE
FONT 8, "MS Sans Serif"
{
EDITTEXT 102, 231,... |
Can not create dialog box (tsbrowse) | Que no me había "logueado" y he salido como guest. |
Can not create dialog box (tsbrowse) | Estás redefiniendo el control 110 desde el PRG ? |
Can not create dialog box (tsbrowse) | Cieeeerto, ese era el problema.
Al estar migrando desde Clip53+FW, llamaba a una función que me crea los Browses y estaba llamando al que usaba con FW.
Gracias. |
Can not detect explanation of function in chm or your wiki. | Dear Antonio,
I was upgraded yesterday, fwh15.02.
By the way, can not detect explanation of recently add function in fwfun.chm or wiki.fivetechsoft.com.
For example, FW _ OpenAdoConnection() ? FW _ QuotedColSQL() ? FW _ OpenRecordSet() etc. ...
If is added in help, was wished to record together when was added from fw... |
Can not detect explanation of function in chm or your wiki. | Moon,
Please review our wiki:
[url:3oywnkzj]http://wiki.fivetechsoft.com/doku.php?id=fwh_ado_api[/url:3oywnkzj]
Not all functions are listed there yet, but surely it will help you <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Full source code is availa... |
Can not disable GET when using WHEN clause | Hello,Is this a bug or a feature? <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->You can not disable any control when you use a WHEN clause. For example:[code:395yy0t0]#include "FiveWin.ch"
FUNCTION Main()
LOCAL oDlg, oGet1, oGet2
LOCAL cVar1:="test 1"... |
Can not disable GET when using WHEN clause | Patrick,[quote="Patrick Mast":r3g8lvlx]Hello,
Is this a bug or a feature? <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
You can not disable any control when you use a WHEN clause. For example:
[code:r3g8lvlx]#include "FiveWin.ch"
FUNCTION Main()
LOCAL oD... |
Can not disable GET when using WHEN clause | Hey SGS,Thanks for your sample. But I actualy want to do this:[code:1swwe4ge]#include "FiveWin.ch"
FUNCTION Main()
LOCAL oDlg, oGet1, oGet2
LOCAL cVar1:="test 1"
LOCAL cVar2:="test 2"
SetGetColorFocus()
DEFINE DIALOG oDlg TITLE "Test"
@ 1, 6 GET oGet1 VAR cVar1 O... |
Can not disable GET when using WHEN clause | PatrickIt is normal. I placed a tracelog in the when clausule :@ 2, 6 GET oGet2 VAR cVar2 OF oDlg SIZE 60, 10 WHEN (tracelog(),.T.)with as result :[testfw.prg->(b)MAIN] (14) Called from: WINDOW.PRG->TDIALOG:AEVALWHEN(0) DIALOG.PRG->TDIALOG:INITIATE(0) ... |
Can not disable GET when using WHEN clause | PatrickIt is normal. I placed a tracelog in the when clausule :@ 2, 6 GET oGet2 VAR cVar2 OF oDlg SIZE 60, 10 WHEN (tracelog(),.T.)with as result :[testfw.prg->(b)MAIN] (14) Called from: WINDOW.PRG->TDIALOG:AEVALWHEN(0) DIALOG.PRG->TDIALOG:INITIATE(0) ... |
Can not disable GET when using WHEN clause | Patrick,Try it this way:[code:2q1jkt6v]
#include "FiveWin.ch"
FUNCTION Main()
LOCAL oDlg, oGet1, oGet2, lStatus := .T.
LOCAL cVar1:="test 1"
LOCAL cVar2:="test 2"
SetGetColorFocus()
DEFINE DIALOG oDlg TITLE "Test"
@ 1, 6 GET oGet1 VAR cVar1 O... |
Can not open UUID.DLL | This issue relates to BUILDH.BAT linking the required exe using [color=#FF0000:22bawcju]iLink.exe --> Borland 582.[/color:22bawcju]
Solution: Open the iLink.cfg file to be found in the folder: borland\bcc582\bin and correct the path |
Can not open UUID.DLL | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=17&t=13098">viewtopic.php?f=17&t=13098</a><!-- l --> |
Can not use resources with _ (Underscore) | Hello,
We have a very interesting problem with [b:3qhujscw]Microsoft Compatibe[/b:3qhujscw] DLL files build from resources. If we compile the resource file with Borland, the problem goes away.
If we use a _ (underscore) in a resource name, and there is another resource name that begins with the same letter as the one... |
Can not use resources with _ (Underscore) | Patrick,
Try to write the resources this way:
IN_DBFYES BITMAP "BITMAPS/IN_DBF_YES.BMP"
IN_DBFNO BITMAP "BITMAPS/IN_DBF_NO.BMP"
INSERT BITMAP "BITMAPS/INSERT.BMP"
CHANGE BITMAP "BITMAPS/CHANGE.BMP" |
Can not use resources with _ (Underscore) | Patrick,
You may also (binary) compare the RES files from Borland and Microsoft to check what the differences are |
Can not use resources with _ (Underscore) | [quote="Antonio Linares":1pdkelzg]Patrick,
Try to write the resources this way:
IN_DBFYES BITMAP "BITMAPS/IN_DBF_YES.BMP"
IN_DBFNO BITMAP "BITMAPS/IN_DBF_NO.BMP"
INSERT BITMAP "BITMAPS/INSERT.BMP"
CHANGE BITMAP "BITMAPS/CHANGE.BMP"[... |
Can not use resources with _ (Underscore) | Patrick,
Have you binary compared the two RES files ? |
Can not use resources with _ (Underscore) | [quote="Antonio Linares":h7xbpedk]Have you binary compared the two RES files ?[/quote:h7xbpedk]Yes, and they have a few bytes difference. You can download both BCC and MSVC build DLL, MAP, RC and RES from here:
<!-- m --><a class="postlink" href="http://s194970364.onlinehome.us/Test_resource_.dll.zip">http://s194970364... |
Can not use resources with _ (Underscore) | Patrick,
Have you tried to place the Borland RES file into the Microsoft compatible DLL ?
If you open the RES files with PellesC, they look exactly the same except that Borland is using Dutch (Belgium) instead of English (United States) |
Can not use resources with _ (Underscore) | [quote="Antonio Linares":2oe6s5g3]Have you tried to place the Borland RES file into the Microsoft compatible DLL ?[/quote:2oe6s5g3]Yes, but problem stays the same.
[quote:2oe6s5g3]If you open the RES files with PellesC, they look exactly the same except that Borland is using Dutch (Belgium) instead of English (United ... |
Can not use resources with _ (Underscore) | Patrick,
I think the difference comes from building the DLL, as the DLL reading is performed by standard Windows API functions |
Can not use resources with _ (Underscore) | Patrick,
PellesC IDE properly opens the Borland DLL, but fails opening the other DLL with error: "user stopped resources enumeration" |
Can not use resources with _ (Underscore) | [quote="Antonio Linares":3il5b73o]I think the difference comes from building the DLL, as the DLL reading is performed by standard Windows API functions[/quote:3il5b73o]Ok.
Now, problem is, I build the MSVC Compatible Testdll with xHarbour Builder AND for test also with Resoure Builder, and they both show the same probl... |
Can not use resources with _ (Underscore) | Have you tried to build the DLL using MSVC ? |
Can not use resources with _ (Underscore) | [quote="Antonio Linares":32p5v3py]Have you tried to build the DLL using MSVC ?[/quote:32p5v3py]It works OK when I build the DLL with Visual Studio 2005.
Patrick |
Can raw keyboard input be implemented???? | Can raw keyboard input be implemented?The Idea is-You have a multi monitor pc.1st execution of your application is displayed on monitor 1.2nd execution of your application is displayed on monitor 2.3rd execution of your application is displayed on monitor 3.4th execution of your application is displayed on monitor 4.5t... |
Can raw keyboard input be implemented???? | Mike,It doesn't look difficult to be implemented:<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/ms645590(VS.85">http://msdn.microsoft.com/en-us/library/ms645590(VS.85</a><!-- m -->).aspxAs a start you could inherit a new Class TMyWindow FROM TWindow and redefine the Method HandleEvent() to ... |
Can raw keyboard input be implemented???? | Antonio – I am hoping that when I implement this into an executable that it would only be active in that executable.Can anyone help with the dll32 function calls to user32.dll to process the raw keyboard calls. I have no idea where to start with this. Once I can see how to get the keyboards handle and the key pressed I... |
Can raw keyboard input be implemented???? | Mike,Here you have a first prototype. Actually it is just receiving the keyboard events. We need to find the flag for the mouse events too. Click on the window and then press some keyboard keys. You will hear "beeps" <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Though thi... |
Can raw keyboard input be implemented???? | This new version manages the mouse and the keyboard. Please notice that it will beep like crazy because it detects all the mouse movements <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Next we need to select the events that are just for our window:rawinput.prg[code:16994jg... |
Can raw keyboard input be implemented???? | Wow that’s great I can’t thank you enough.I was out of the office today and was very excited to see a response from you.I don’t know if I understand correctly how this will work.Will it be that we filter the device id for a particular keyboard and mouse for the active application?(one on each screen)I have already put ... |
Can raw keyboard input be implemented???? | A new version implementing GETRAWINPUTDATA():[code:gciwes64]
// Windows Raw Input API support demo, (c) FiveTech Software
#include "FiveWin.ch"
#define WM_INPUT 0x00FF
function Main()
local oWnd := TMyWindow():New()
oWnd:SetText( "Raw Input test" )
... |
Can raw keyboard input be implemented???? | Thanks for your time AntonioMike. |
Can raw keyboard input be implemented???? | Mike,Lets see if we get a good and well designed Raw Input implementation, as simple as possible <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->I am still reading a lot about this interesting Windows API to find the right way to do it and make it real easy to be used <!-- s... |
Can raw keyboard input be implemented???? | This version already list the available HIDs.Mike, please connect several keyboards and mouses and lets see how they look like in the list, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[code:1gfnpu50]
// Windows Raw Input API support demo, (c) FiveTech Soft... |
Can raw keyboard input be implemented???? | Keyboard and Mouse devices seem to use KBD and MOU in their names:[url=http://imageshack.us:3070p13h][img:3070p13h]http://img529.imageshack.us/img529/3865/hidsbz0.jpg[/img:3070p13h][/url:3070p13h] |
Can raw keyboard input be implemented???? | Here you have the EXE and PRG for those of you that want to try it on your computers:<!-- m --><a class="postlink" href="http://rapidshare.com/files/148687954/rawinput.zip.html">http://rapidshare.com/files/148687954/rawinput.zip.html</a><!-- m --> |
Can raw keyboard input be implemented???? | I think that the easiest implementation would be something like this <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->SET KEYBOARD TO 1SET MOUSE TO 1For another application:SET KEYBOARD TO 2SET MOUSE TO 2or even simpler: The application automatically selects the next availabl... |
Can raw keyboard input be implemented???? | A new version that counts the number of mouses and returns the handle for each one.[code:23f0uu99]
// Windows Raw Input API support demo, (c) FiveTech Software
#include "FiveWin.ch"
#define WM_INPUT 0x00FF
function Main()
local nMouses := GetRawMouses(), n
MsgInfo( "Numbe... |
Can raw keyboard input be implemented???? | In this new version we can select the mouse to use, though we are not processing its events yet:[code:zqjg23n6]
// Windows Raw Input API support demo, (c) FiveTech Software
#include "FiveWin.ch"
#define WM_INPUT 0x00FF
function Main()
local oWnd := TMyWindow():New()
... |
Can raw keyboard input be implemented???? | Olá Antonio,É possível saber:1) Qual objeto esta focado na WM_INPUT ?2) Se estou usando o teclado, qual tecla foi pressionada.3) Se estou usando o mouse, em qual objeto cliquei.Obrigado,Rossine. |
Can raw keyboard input be implemented???? | Rossine,We are doing many tests to find the right way to use the Raw Input API. We think there is a mistake in Microsoft docs regarding DefRawInputProc():<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/ms645594(VS.85">http://msdn.microsoft.com/en-us/library/ms645594(VS.85</a><!-- m -->).aspx... |
Can raw keyboard input be implemented???? | This is the most recent PRG and EXE:<!-- m --><a class="postlink" href="http://rapidshare.com/files/148882254/rawinput.zip.html">http://rapidshare.com/files/148882254/rawinput.zip.html</a><!-- m -->We need to properly call DefRawInputProc() or the first window does not receive WM_INPUT messages. |
Can raw keyboard input be implemented???? | This is a better example that lets you select the mouse to use. Please connect several mouses to your computer and select the one to use from the main menu:PRG and EXE here:<!-- m --><a class="postlink" href="http://rapidshare.com/files/148918411/rawinput.zip.html">http://rapidshare.com/files/148918411/rawinput.zip.htm... |
Can raw keyboard input be implemented???? | First Off Great Work AntonioThis is what I noticed.I added to METHOD HandleEvent()if nMsg == WM_MOUSEMOVE if RawGetHandle( nLParam ) == ::hMouse ::MouseMove( nHiWord( nLParam ), nLoWord( nLParam ), nWParam ) return nil else return nil endifendifAnd also added to the window-oWnd:OnMouseMove:= {|SELF,X,... |
Can raw keyboard input be implemented???? | Mike,Let me explain you what we have discovered so far:1) When we use RIDEV_INPUTSINK when we call REGISTERRAWINPUTDEVICES() then we receive standard Windows mouse and keyboard messages besides the WM_INPUT messages.2) If we use RIDEV_NOLEGACY instead of RIDEV_INPUTSINK, then Windows does not send any mouse or keyboard... |
Can raw keyboard input be implemented???? | Antonio what are your thoughts on how to move forward?Mike |
Can raw keyboard input be implemented???? | Mike,I think that we have to go for the option 2) to have full control of the mouse and keyboard |
Can raw keyboard input be implemented???? | Antonio if I knew how to do c programming I would jump right in there and help you. I believe that the hardware dollar savings that an end user could realize, would make our FiveWin applications really shine over our competition.Thanks Again Mike |
Can raw keyboard input be implemented???? | Hello Antonio,I find this important and very interesting matter.Congratulations,Rossine. |
Can raw keyboard input be implemented???? | In this example we try to analize all mouse input that we receive. If you run this example you will see that we get all the mouse activity. We need to find a way to select just the messages for the used window:[code:t67evavg]
// Windows Raw Input API support demo, (c) FiveTech Software
#include "FiveWin.ch... |
Can raw keyboard input be implemented???? | Thanks For Your Effort AntonioMike |
Can raw keyboard input be implemented???? | I am googling for info about how to proceed. It looks as other programmers have our same questions:<!-- m --><a class="postlink" href="http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.ui/2008-03/msg00021.html">http://www.tech-archive.net/Archive/Dev ... 00021.html</a><!-- m -->The probl... |
Can raw keyboard input be implemented???? | This line may be the missing part that we need:[code:1lbifc5t]
if ::hWnd == GetFocus() .and. RawIsMouse( nLParam ) .and. RawGetHandle( nLParam ) == ::hMouse
[/code:1lbifc5t]More tests... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title=... |
Can raw keyboard input be implemented???? | No, not yet.We need to keep searching how to do the right conversion from WM_INPUT to WM_(mouse) and WM_(keyb) messages. |
Can raw keyboard input be implemented???? | Olá Antonio,Não sei se isto tem algo a ver com o que procura: [code:2cz6c1ec]
#define WH_MIN (-1)
#define WH_MSGFILTER (-1)
#define WH_JOURNALRECORD 0
#define WH_JOURNALPLAYBACK 1
#define WH_KEYBOARD 2
#define WH_GETMESSAGE 3
#define WH_CALLWNDPROC 4
#define WH_CBT 5
#define WH_SYSMSGFILTER 6
#... |
Can raw keyboard input be implemented???? | Antonio,Veja este link também: [url:1jp99abd]http://www.purebasic.fr/english/viewtopic.php?t=25750&postdays=0&postorder=asc&start=0[/url:1jp99abd]SaludosRossine. |
Can raw keyboard input be implemented???? | Rossine,Thanks for the link. I had already reviewed it before <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->We need to know the right way to translate WM_INPUT into WM_(mouse) and WM_(keyb) messages (if possible!) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt="... |
Can raw keyboard input be implemented???? | Antonio Said -The problem is that WM_INPUT does not provide info about the windows handle where the event hapenned. Meanwhile I am typing this an idea arised: if our windows has the focus and we get a WM_INPUT message then it is for us. If we don't have the focus, it is not for us... That is a good thought but-Say we h... |
Can raw keyboard input be implemented???? | Mike,I have been thinking about it, and I see there is a major problem with it:We can't have several applications having the focus at the same time, in the same computer. So it may be impossible to manage them simultaneously.Unless I am missing something... |
Can some one share a ebook of fwh | Hi,
i have lot of problem while learning FWH as a beginer .so Please upload a ebook or path to find it
so it will a real boost for me. <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
Regards
sajith |
Can some one share a ebook of fwh | Sajith,
It is available from here:
[url:36166zaa]http://www.fivetechsoft.com/files/fivewin.chm[/url:36166zaa] |
Can some one share a ebook of fwh | many thanks for your support for ebook. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
but this book does not provide entire feature can u provide a book with entire feature so it will be greatful for my work.
Regards
sajith |
Can some one share a ebook of fwh | Sajith,
When you buy FWH then you get the full documentation, thanks |
Can some one share a ebook of fwh | Sajith,
There is no book that covers all of FW's capabilities.
There are a few articles that I wrote thay may help. You can find them on my website here.
[url:3o8jmzko]http://ourworld.compuserve.com/homepages/jbott/program.htm[/url:3o8jmzko]
Regards,
James |
Can some one share a ebook of fwh | many thanks for ur great help <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Regards
sajith |
Can the preview be closed with ESC? | Dear friends, I need to close the preview with ESC. Can it be done?
EMG |
Can this be done ? | I'm calling a FWH (GUI) program from a harbour console (text) one. The FWH program displays an image, but I want to return control to the caller (console) one leaving the image open. Here's the code but it's not working:
[code=fw:3eyyqxrz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #... |
Can this be done ? | Ah!, I do understand
Please test ACTIVATE DIALOG............... NOMODAL |
Can this be done ? | Cristobal:
De programa closes itself with the NOMODAL clause. |
Can we connect and get function from Google/translate? | Dear All,
I have no idea that can we connect and get translate function from google.com/translate?
Thanks for any idea. |
Can we connect and get function from Google/translate? | Dutch,
It appears that Google Translate only works for websites. Is that what you need? If so you can use the Translate gadget if it is your own website, otherwise for other websites you have to use the Translate API which is a paid service.
<!-- m --><a class="postlink" href="https://developers.google.com/translate/... |
Can we convert php code to FWH | Hello,
My Mailing provider has API stuff to let me retrieve data from my account into php.
I never used it, but maybe if it can be cenverted to FWH it becomes interesting.
Has someone done something simular once ?
[code=fw:329x5kvd]<div class="fw" id="{CB}" style="font-family: monospace;"><?php<br /><br />require_on... |
Can we convert php code to FWH | I think that you don't need to convert the php code to FiveWin, instead you make a call to the php from fivewin and capture its output. The output seems to be JSON. You can further process the JSON output from Fivewin. For this to work, you need to know the URL that is to be called.
For eg. something like
[code=fw:1... |
Can we convert php code to FWH | AFAIK, It seems it can be done with harbour, and translated without too much effort using hb_curl, that youcan find in the Harbour's contribs. |
Can we have Menus in ReBar like Ms-Word Menus | Hi
Could anybody try to place menus on ReBar ?
- Ramesh Babu P |
Can we have Menus in ReBar like Ms-Word Menus | Ramesh,
No, not yet. They are not directly supported by the Windows API, though we believe we will be able to implement them. |
Can we have Menus in ReBar like Ms-Word Menus | [quote="RAMESHBABU":2g4v3pt0]Hi
Could anybody try to place menus on ReBar ?
- Ramesh Babu P[/quote:2g4v3pt0] |
Can we have Menus in ReBar like Ms-Word Menus | Hi goosfancito
Thank you for your posting and the link.
I could look at the pictures and understood that menus could be placed on
ReBar.
But I am very sorry! that I could not understand the language and I could
not find that the library is commercial or free one. I did not find any
samples also the the site.
... |
Can we have Menus in ReBar like Ms-Word Menus | Hi goosfancito
I could find the link to downloads.
Regards
- Ramesh Babu P |
Can we have Menus in ReBar like Ms-Word Menus | [quote="RAMESHBABU":2icr30ub]Hi goosfancito
I could find the link to downloads.
Regards
- Ramesh Babu P[/quote:2icr30ub]
Hi,
You need CVS software to download the class. This class is a modify to the original fivewin Class.
See later. |
Can we have Menus in ReBar like Ms-Word Menus | Hi goosfancito
Thanks for your reply. I could download the following TTbar.prg of which
the header is as below:
/*
$Id: TTBar.prg,v 1.3 2006/05/27 17:25:25 Administrador Exp $
Project: TXBrowseH
File: TTBar
Created: 10/31/2005 08:00
Lira Lira Oscar Joel
*/
Please check whether it is the same clas... |
Can we have Menus in ReBar like Ms-Word Menus | Oskar,
Could you provide us with the commctrl.ch file? I couldn't find it in the Fivewin, Harbour, xHarbour, or Borland files.
James |
Can we know the relations from SQL/MARIADB databases | I can open and edit many tables from a online database (Prestashop) from my server.
I know that Prestashop has relations, indexes, .... from many of his tables.
EX.
Table : PS_products must have a relation or so from table PS_ATTRIBUTES
Can we somehow know with a command/function in SQL if there is a relation bet... |
Can we know the relations from SQL/MARIADB databases | I see that the program HeidiSql mentioned on the forum gives most of the info. |
Can we make Chrome extension software with Fivewin/Harbour? | Dear All members,
Can we make Chrome extension with Fivewin for Harbour/xHarbour?
Recently, I found we can not use ActiveX for several websites...
And, those kinds of websites are increasing..
When I try to connect those sites with ActiveX, it was mentioned as followings.
"Internet Explorer 7 is no longer supp... |
Can we make Chrome extension software with Fivewin/Harbour? | Look if you serve
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=25471&start=0">viewtopic.php?f=6&t=25471&start=0</a><!-- l --> |
Can we modify class #DEFINE | In the class for tget, we have the following:
#define COLOR_GRAYTEXT 17
I realize this is a Windows standard. It is used when displaying a Read Only field.
Some of my clients say it is too hard to read. So normally, I take the tget.prg, modify the value to 1, and link that into the application. However, anyt... |
Can we modify class #DEFINE | Tim,
We can change it into a CLASSDATA.
We will implement it for FWH 15.12 |
Can we modify class #DEFINE | That would be helpful. I have no problem myself but the one client ( and others will follow ) use older monitors and they are quite picky. |
Can we modify class #DEFINE | done <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Can we modify class #DEFINE | The other problem, however, is the xbrowse column auto sizing issue that I found in 15.10. I had to revert that program back to 15.06 and it works perfectly. So hopefully I can find the problem for that before 15.12. Exact same code is fine with .06, but scrunches columns in 15.10. I will test it shortly in 15.11 |
Can we paint transparant group box on gradiated dialog | Hi Friends
As subject
[url=http://img233.imageshack.us/my.php?image=groupeo3.png:20r9hhlm][img:20r9hhlm]http://img233.imageshack.us/img233/6300/groupeo3.th.png[/img:20r9hhlm][/url:20r9hhlm]
Regards
- Ramesh Babu P |
Can we paint transparant group box on gradiated dialog | [quote="RAMESHBABU":2vk4fxrt]Hi Friends
As subject
[url=http://img233.imageshack.us/my.php?image=groupeo3.png:2vk4fxrt][img:2vk4fxrt]http://img233.imageshack.us/img233/6300/groupeo3.th.png[/img:2vk4fxrt][/url:2vk4fxrt]
Regards
- Ramesh Babu P[/quote:2vk4fxrt]
Please check:
[... |
Can we paint transparant group box on gradiated dialog | Mr.Norbert
Thanks for your reply.
This picture is generated after having used TRANSPARENT clause.
TRANSPARENT clause is working normally OK, when the dialog/window is painted with any BMP / COLOR brush.
But, here the dialog is painted with color gradiation with code.
Regards
- Ramesh Babu P |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.