I assume that the data should be received by some kind of web server, but you don't want to use the Webdev application server? The first thing that comes to my mind is some simple PHP web page that receives the necessary data via a parameter (of course if it is possible to use PHP and a web server...) If you don't want to use a web server at all, then one of the options is to useby Marijan Tomasic - WinDev Forum
I am trying to make an installation package for the application, (WD28). I successfully run the installation and upload the installation package to the website, but when I try to install from the website, I successfully download the INSTALL.EXE, but when I run it, nothing happens?!? What am I doing wrong?by Marijan Tomasic - WinDev Forum
"...when one is clicked you get that name... " Thanks, but I don't understand... Can you write me the code to find out which option is clicked?by Marijan Tomasic - WinDev Forum
Code section: Initializing CBOX_multioption R is int R = CBOX_multioption // OR Value of field linked to CBOX_multioption Code section: Whenever modifying CBOX_multioption nClickedOption is int FOR x = 1 _TO_ MySelf.Count() IF BinaryXOR( MySelf.Value, R ) THEN nClickedOption = x END END Info("Clicked option is: " + nClickedOption)by Marijan Tomasic - WinDev Forum
i mean windev...by Marijan Tomasic - WinDev Forum
Is there a way to identify which option was last clicked on a multi-option check box? For example in the "Whenever modifying" event code.by Marijan Tomasic - WinDev Forum
I switched to the SQLxxx set of functions, which can do what I wanted. If someone knows the answer to my question, please write... maybe it will be useful to someone.by Marijan Tomasic - WinDev Forum
How to change the title of the 3rd column in the table (webdev/php)? similar to the example below, just access the column name by index, not by name: TABLE_mytable.COL_Column3.Caption = "Caption3"by Marijan Tomasic - WinDev Forum
All examples of the HExecuteSQLQuery() function in the documentation use the "Data Source" variable type, which is not supported in the PHP configuration. I need a piece of code like this example, that works in PHP/MySQL: QRY is Data Source sMyQry is string = "SELECT * FROM ZIPCODES LIMIT 10" // The SQL query must be specified in this way... HExecuteSQLQuery(QRY,by Marijan Tomasic - WinDev Forum
Can someone please write a working example of how to use HExecuteSQLQuery() in WEBDEV PHP?by Marijan Tomasic - WinDev Forum
This is what I was looking forby Marijan Tomasic - WinDev Forum
Greeting, I'm talking about WINDEV and HFSQL Client / Server ... Is it possible to save a view (or stored procedure) to an HFSQL server and then import it into a new project directly from the server? (as with MySQL or MSSQL) It is not clear to me how to save the view on the HFSQL server. I can only save the View (or stored procedure) in the Project Analysis.by Marijan Tomasic - WinDev Forum
Please type this in CMD: wmic diskdrive>disk.txt then open disk.txt in wordpad (without linewrap option) I get all serials, internal, external, USB..., (except memory cards) D:\>wmic diskdrive get model,serialnumber >d2.txt D:\>TYPE D2.TXT Model SerialNumber HGST HTS725050A7E630 RC250FCB1RB88K TOSHIBA MQ01ABD100 USB Device 131by Marijan Tomasic - WinDev Forum
Hello, Try google "wmic get disk drive serial number"by Marijan Tomasic - WinDev Forum