Most voted "cefsharp" questions
4 questions
Sort by count of
-
0
votes2
answers61
viewsHow to set id= with ' instead of "
How can I set id= with ' instead of " because if I try to run the script on chromeBrowser.Executescriptasync with the error id=""it, how can I do this? html/javascript code var x = '<label…
-
0
votes1
answer43
viewsHow to insert string c# in Cefsharp script
How can I insert a string c# in the script? string teste = "testando"; chromeBrowser.ExecuteScriptAsync("$(document).ready(function() {alert({0})}); ", teste); I tried this code but did not return…
-
0
votes1
answer27
viewsproblem while removing tab from a tabcontrol c#
I’m trying to remove a tabcontrol, this tabcontrol is with the cef open (browser with google Chrome engine) in it I have a button called exit. He’s raised that way: TabPage nova = new TabPage();…
-
-1
votes1
answer87
viewsCefsharp - Paste Clipboard text into input at onclick event
I have a input within a Iframe on a page .html in https with the event onclick calling a function: <input type="text" value="" id="TXT_PROTOCOLO" placeholder="Clique para colar o protocolo"…