Questions tagged [web-control]

13 questions
6
votes
1 answer

How to Convert an ASP.NET User control to Web/Composite Control?

Is there a simple process to convert an user control to a web/composite control?
burnt1ce
  • 14,387
  • 33
  • 102
  • 162
2
votes
0 answers

List component alternative to list.js that would support drag n drop

Javve's List.js is nice component but there are difficulties to drop items into - you can't just add item with your html, you should add it through List API using json class and then component will create item for you using its template (loosing…
Roman Pokrovskij
  • 9,449
  • 21
  • 87
  • 142
2
votes
1 answer

How do I make the children appear in a custom webcontrol for ASP.NET?

For example, I have a custom control called SampleControl. To simplify things for this question, pretend I'm making just a Panel Control clone from scratch.
danmine
  • 11,325
  • 17
  • 55
  • 75
1
vote
1 answer

WebBrowser errors when loading embedded YouTube videa

With the latest Flash version (19.x), whenever I load an embedded YouTube video in a WebBrower control, it throws back a script error (line 0, char 0, code 0) and end up with a black screen where the video should be. If I copy and paste the url…
user1789459
  • 101
  • 1
  • 4
1
vote
1 answer

Awesomium 1.7.5.1, WinForms, WebControl obj.ExecuteJavascript

I want to insert html code into existing html code. But I do not see the result. Here is the code C #: 1) Program.cs public partial class Form1 : Form { public Form1() { InitializeComponent(); wUI.DocumentReady +=…
1
vote
0 answers

Storage event not executed in WinForms web browser control

I have custom WinForm web browser control that works fine in most cases. The problem I'm having is connected with localstorage events. When adding a listener to the storage event (javascript): window.addEventListener('storage', eventHandler,…
1
vote
1 answer

ObjectForScripting in wxWebView?

In .NET WebBrowser Control, there is a Property named "ObjectForScripting". As you call window.external in Javascripts, it calls then the Function in .Net Code. I'm wondering if this exists also in C++ wxWebView? Or maybe in another C++ GUI Library…
RaphaelH
  • 2,144
  • 2
  • 30
  • 43
0
votes
2 answers

Is there any ASP.NET web control specialized in displaying video?

Is there any ASP.NET web control specialized in displaying video? Thanks
Richard77
  • 20,343
  • 46
  • 150
  • 252
0
votes
1 answer

Add event handler to ASP.net web control without the designer

Is there a convenient way to add an event handler to a web control declaratively (as an attribute on the control in markup) without needing to select the control in the design view for the .aspx/.ascx? Not only would I prefer to avoid the design…
Joel Day
  • 1,917
  • 1
  • 16
  • 12
0
votes
2 answers

Display Excel Spreadsheet in WinForms, C#

I have been struggling the last few hours trying to get an excel spreadsheet/workbook to be displayed on a Windows form using Visual Studio 2012, C#. I can retrieve the data from the workbook and display it on the form, but I need the functionality…
Johan Aspeling
  • 765
  • 1
  • 13
  • 38
0
votes
1 answer

Adding the backend of a web control to the control itself?

Currently I have a web control and backend code for this control (as well as a designer etc). To upload it as a macro to Umbraco though I need to condense this all into one file. How would I go about this without breaking something? Currently when I…
Alex
  • 673
  • 3
  • 9
  • 22
0
votes
1 answer

Scroll position of webcontrol in windows phone

I wonder how can I save the scroll position of large html in webcontrol in windows phone lets say a bookmarking ? Anyone knows?
ali haider
  • 333
  • 3
  • 13
0
votes
1 answer

WebBrowser control get all controls on a thread not working

I have WebBrowser control and i am calling a function to get all the control ID from a thread. the functions works when i called it from the UI thread but does not get any control if called from a separate thread. I am lost please…
Taufiq Abdur Rahman
  • 1,348
  • 4
  • 24
  • 44