Questions tagged [windev]

WINDEV, a powerful IDE & ALM suite, lets you build strategic projects easily and quickly thanks to its total integration, ease-of-use and cutting-edge technology. .Net, Java code and more!

WinDev is an integrated development environment (IDE) fourth generation language (4GL), first published by PC SOFT in 1993, which is based upon a run-time engine (framework). It uses a 4GL known as WLanguage. The tools enables a predetermined set of standard forms and algorithms to be used in an automated fashion to generate applications (RAD).

101 questions
1
vote
0 answers

Cannot connect to windev HFSQL db using pyodbc

import pyodbc print('work') conn = pyodbc.connect("DRIVER={HFSQL};Server Name=127.0.0.1;Server Port=4900;Database=main;UID=admin;PWD=admin", autocommit=True) print('not work') conn.close() I followed instraction…
1
vote
0 answers

Strange AT+NETMODE response: 8,5,0,0,0,1,2,1,0,0,5

I'm getting a strange response from AT+NETMODE, which is: +NETMODE: 8,5,0,0,1,1,2,1,0,0,5 ...Is this normal? What does it mean? Context: I want to send SMS using a ZTE M190 SMS modem controlled by a software I made with Windev23. That modem don't…
Youki
  • 33
  • 8
1
vote
1 answer

Develop in IOS without using Global Variable and class

I am developing an extra GPS module for an app in WinDev. WinDev supports Swift code but only method which excluding class and global variable use. Here what I've done (basically based on Apple doc) : import Foundation import CoreLocation …
Quentin
  • 23
  • 1
  • 3
1
vote
0 answers

Printing a report in a WinDEV program, using Wine on OS X

I have a WinDEV program, which can print a report. This works perfectly on Windows. However, I have been asked to make this program work on OS X as well, since we have a few customers that use Apple... Using Wine, I managed to get the program…
1
vote
0 answers

eBook reader like Viewer for Android app

I want to show content in my Android app that is fetching the content from a remote MySQL server. Currently I am showing data in WebView but here I do not have any control over many aspects like retrieving as to which word is selected (by long…
Yogi Yang 007
  • 5,147
  • 10
  • 56
  • 77
1
vote
1 answer

4 bytes to decimal - C# From Windev

I have this 4 bytes : 0x41 0xCC 0xB7 0xCF and I must to find the number 25.5897503. With Windev, a sample uses the Transfer() function but I can't find equivalent in C# Could you help me with some indications ? Thanks
Bob
  • 1,011
  • 3
  • 12
  • 28
1
vote
2 answers

calling DLL method from WinDev

I want use a DLL (developed in C++) in WinDev application , my DLL works fine with C# code and i can call any method in there , however with Windev i can successfuly load the DLL using : hInst = LoadDLL("MyDLL.DLL") but when i want invoke a method…
Anass Boukalane
  • 539
  • 10
  • 26
1
vote
1 answer

Is it guaranteed that getExternalFilesDir() and getFilesDir() are on the same storage device

I develop an app with PCSOFT Windev CASE. There's an instruction "fRepExe" that is equivalent to getFilesDir. Instead of that, I have replaced it by a call to java instruction getExternalFilesDir, that permit to see the files from a file manager,…
coutier eric
  • 949
  • 5
  • 18
1
vote
2 answers

Error while generating Android app

As on my previous topic, which has been fixed, (http://forum.pcsoft.com/en-US/windevmobile/26508-cle-google-map-lors-generation-application-android-26510/Read.awp), I want to generate an app on WinDev Mobile 22 At the very end, I have these…
Titix
  • 21
  • 4
1
vote
1 answer

How to retrieve Registration ID on Android Device in WinDev Mobile 20?

I'm new to WinDev Mobile. In the project that I'm working on, there is a need for implementing Push Notification with use of GCM. The notification will be sent from PHP script running on our web server. For this, it is necessary that the mobile app…
Pujaba Zala
  • 123
  • 10
1
vote
1 answer

Windev Mobile - Integrate Telegram API in my main App for sending messages regarding updates

We are developing a Android App for education institutes. This app is developed in WinDev Mobile. This app will be distribute to multiple institutes once completed. In this app we want to send Homework information to students and their parents…
Yogi Yang 007
  • 5,147
  • 10
  • 56
  • 77
1
vote
1 answer

buttons action runtime in windev

i'm creating a x number of buttons runtime in this way: btn is Control btn <- ControlCreate(name,typButton,mouseX,mouseY,mouseXRel-mouseX,mouseYRel-mouseY,True) btn..Caption = name btn..Process[trtClick] = buttonAction the buttonAction code…
Luca Alberto
  • 1,195
  • 3
  • 11
  • 30
1
vote
1 answer

couldn't compile example programs of WinDev Mobile with Android sdk installed in my PC

I have just installed WinDev Mobile 18 on a fresh PC. The Os is Win7 32Bit. When I open any of the Android Examples that ships with WinDev Mobile and compile them for Android Apk I keep getting this error: System error message: The system cannot…
Yogi Yang 007
  • 5,147
  • 10
  • 56
  • 77
1
vote
2 answers

how to create temporary database table with windev mobile

I created an application for android with mobile Windev and in this application. I have an order entry system. To do this I use an array variable to store in memory all customer orders before recording them at the last moment in the database…
Zogre
  • 73
  • 1
  • 1
  • 10
1
vote
1 answer

Infinite loop when playing a sound

I want a sound to be played in a loop until an on/off button is off. I use this code: WHILE BTN_Bouton73..Enfoncé=1 Son(S_chemin+"H3.wav",sonBoucle) END But it goes into an infinite loop!
narulamo
  • 11
  • 1
  • 4