
Search found 81 matches
- Sun Oct 27, 2024 12:05 pm
- Forum: Coding Questions
- Topic: QR and webcam
- Replies: 12
- Views: 1531
Re: QR and webcam
Thank you very much 

- Sat Oct 26, 2024 2:34 am
- Forum: Coding Questions
- Topic: QR and webcam
- Replies: 12
- Views: 1531
Re: QR and webcam
Can you explain a little about how to detect barcode by webcam?
- Fri Oct 25, 2024 8:28 pm
- Forum: Coding Questions
- Topic: QR and webcam
- Replies: 12
- Views: 1531
QR and webcam
Hello,
is it possible to scan QR codes using a webcam and QRCodeModule.pbi library in pb?
If yes, what are its requirements?
is it possible to scan QR codes using a webcam and QRCodeModule.pbi library in pb?
If yes, what are its requirements?
- Sat Sep 14, 2024 3:40 am
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
@Quin , Can you give a codes example please?
- Fri Sep 13, 2024 5:30 pm
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
Thanks Fred, I haven't got the result yet, but maybe your codes will make me successful.
@Caronte3D : I did what you said and it showed me these. Which one is ID?
<input _ngcontent-ial-c516="" type="text" autocomplete="off" formcontrolname="UserName" autofocus="" placeholder="uname" class="form ...
@Caronte3D : I did what you said and it showed me these. Which one is ID?
<input _ngcontent-ial-c516="" type="text" autocomplete="off" formcontrolname="UserName" autofocus="" placeholder="uname" class="form ...
- Fri Sep 13, 2024 3:05 pm
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
Thank you very much Fred.
This is a great example when I've built a web page myself and know what ID input is.
I want to find the input IDs of a site loaded in the webview control and fill them.
This is my main problem.

This is a great example when I've built a web page myself and know what ID input is.
I want to find the input IDs of a site loaded in the webview control and fill them.
This is my main problem.
- Fri Sep 13, 2024 1:44 am
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
Please help me, believe me, I couldn't write by myself, otherwise I wouldn't have asked you.
I don't know JavaScript syntax, just a piece of code that returns the ID or name of the controls on the screen would be great. I want to put my own text on the inputs of a web page whose IDs I don't know
I don't know JavaScript syntax, just a piece of code that returns the ID or name of the controls on the screen would be great. I want to put my own text on the inputs of a web page whose IDs I don't know
- Thu Sep 12, 2024 5:13 pm
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
Can you give an example that returns the id or name of the web controls? Especially the inputs or text boxes...
I tried a lot but my problem still persists
I tried a lot but my problem still persists

- Mon Sep 09, 2024 10:24 am
- Forum: Coding Questions
- Topic: HttpClient in C# and HTTPRequest in PB
- Replies: 12
- Views: 1939
Re: HttpClient in C# and HTTPRequest in PB
@ infratec Thank you very much for your help. :D :D :D :D
only I want the "message" and "mobilenumber" to be read from pb variable. No matter what I did, I could not create them. :(
Please guide me on the same thing
I wrote like this, but it doesn't work
Post$ = ~"{"
Post$ + ~"\"Message ...
only I want the "message" and "mobilenumber" to be read from pb variable. No matter what I did, I could not create them. :(
Please guide me on the same thing
I wrote like this, but it doesn't work
Post$ = ~"{"
Post$ + ~"\"Message ...
- Mon Sep 09, 2024 9:13 am
- Forum: Coding Questions
- Topic: HttpClient in C# and HTTPRequest in PB
- Replies: 12
- Views: 1939
Re: HttpClient in C# and HTTPRequest in PB
Hello and thank you all for the answers, I really appreciate it.
The problem I have is that the MobileNumber argument takes the string address and this causes an error
Please see the description of the arguments and the example code
SenderNumber string
Message string
MobileNumber [ ] string ...
The problem I have is that the MobileNumber argument takes the string address and this causes an error
Please see the description of the arguments and the example code
SenderNumber string
Message string
MobileNumber [ ] string ...
- Sun Sep 08, 2024 6:24 pm
- Forum: Coding Questions
- Topic: HttpClient in C# and HTTPRequest in PB
- Replies: 12
- Views: 1939
Re: HttpClient in C# and HTTPRequest in PB
what is the format of writing the data parameter in the HTTPRequest function?
{
Message = "message",
SenderNumber = "sendermobilenumber",
MobileNumber = receiver,
SendToBlocksNumber = true
};
Just someone tell me how to send these data to the data parameter of HTTPRequest . Is this a hard job?
{
Message = "message",
SenderNumber = "sendermobilenumber",
MobileNumber = receiver,
SendToBlocksNumber = true
};
Just someone tell me how to send these data to the data parameter of HTTPRequest . Is this a hard job?
- Sun Sep 08, 2024 6:00 pm
- Forum: Coding Questions
- Topic: HTTPRequest Data Arg
- Replies: 1
- Views: 458
HTTPRequest Data Arg
hello
What format does the data parameter have in the HTTPRequest function?
I want to send this data in this function.
{
Message = "msg",
SenderNumber = "Smobile",
MobileNumber = Rmobile,
SendToBlocksNumber = true
}
How should I write these?
What format does the data parameter have in the HTTPRequest function?
I want to send this data in this function.
{
Message = "msg",
SenderNumber = "Smobile",
MobileNumber = Rmobile,
SendToBlocksNumber = true
}
How should I write these?
- Sun Sep 08, 2024 4:57 pm
- Forum: Coding Questions
- Topic: HttpClient in C# and HTTPRequest in PB
- Replies: 12
- Views: 1939
HttpClient in C# and HTTPRequest in PB
hi all
i need help to convert this C# codes to pb, Please help me in a short time, I really need it.
var client = new HttpClient();
string[] receiver = { "mobilenumber"};
var data = new
{
Message = "message",
SenderNumber = "sendermobilenumber",
MobileNumber = receiver,
SendToBlocksNumber = true ...
i need help to convert this C# codes to pb, Please help me in a short time, I really need it.
var client = new HttpClient();
string[] receiver = { "mobilenumber"};
var data = new
{
Message = "message",
SenderNumber = "sendermobilenumber",
MobileNumber = receiver,
SendToBlocksNumber = true ...
- Sat Aug 31, 2024 6:03 am
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Re: Set text to web textbox
thank you
Is there a function that displays the name or ID of the controls on the web page?
Because I don't know its ID.
Is there a function that displays the name or ID of the controls on the web page?
Because I don't know its ID.
- Fri Aug 30, 2024 12:27 pm
- Forum: Coding Questions
- Topic: Set text to web textbox
- Replies: 12
- Views: 2595
Set text to web textbox
hello
Is it possible to set strings on the textbox in the web page loaded in the webviewgadget?
actually, I want to detect the textbox of the web page and put a string on it. Is this possible by webview control?
Is it possible to set strings on the textbox in the web page loaded in the webviewgadget?
actually, I want to detect the textbox of the web page and put a string on it. Is this possible by webview control?