Dear colleagues, I am totally confused in thread control. I need help in follow scenarios: 1, opened window > disable window > start download file (ideally with progress) > wait for finish download > process file > enable window > continue 2, opened window > list of files for downloading > disable ...
I am newbie in JSON and I have follow JSON: {"files":[["EAC_D_20221227.eac",91,1672156042,1672156164],["EAC_L_00000011.eac",102720,1672156148,1672221568],["EAC_D_20221228.eac",97254,1672222672,1672319576],["EAC_D_20221229.eac",135280,1672319622,1672416862],["EAC_D_20221230.eac",70225,1672416948 ...
My scenario:
- program running on PC without WiFi connection
- in program scan available WIFi networks
- connect to choosen one from program (not by system setting)
Probably I'll need API (for Win) and I need help with it.
i = 0; If ReadFile(0, "yourfile") BOMformat = ReadStringFormat(0) While Not Eof(0) line$ = ReadString(0) i = i + 1 If (i = 2) ;only line 2 from yourfile Debug line$ EndIf If (i > 4) ;from line nr 4 to end from yourfile Debug line$ EndIf Wend CloseFile(0) EndIf