embedding

set browser locale in Internet Explorer programmatically

Is there a way to set the Internet Explorer locale (accepted languages) programmatically. I have a small application which is embedding Internet Explorer and I would like to give the use the possibility to change the locale when clicking a simple button. Is there a way besides tweaking registry and calling SendMessageTimeout(HWND_BROA...

pygtk how to embed external application within my pygtk GUI

I'm desiging a pygtk GUI and want to embed an external application into it. Does anyone have any idea how this can be done? ...

rhino embedding

Anyone understands the rhino javascript Contexts? I cannot find any useful documentation about it. My main problem is the Context.exit() (really should be cx.exit()) which from what I understand exits the context associated with the current thread? Does that mean I need to keep track of what which thread does? main thread: Context...

Include dynamic URL in my URL without using query string?

ASP.NET 3.5, IIS7 In my Global.asax's Application_BeginRequest, I need to extract from the request's URL an entirely seperate URL that's been embedded in it without using query string. The solution I came up with was to hex-encode the entire target URL as if it were a directory, as follows: http://localhost/687474703A...etc...732E6D70...

Flash CS4: Font Disappearing

I have an odd issue while using FlashCS4. I have a textfield that, when set to STATIC TEXT works absolutely fine, in the correct font. If I set it to DYNAMIC TEXT, the text shows up as Arial or some other default on systems where the selected font isn't available. It shows up in the proper font on systems that have the font installed. ...

IronPython - Load script from string in C# 4.0 application

Hi, I have the following code (just a test): var engine = Python.CreateEngine(); var runtime = engine.Runtime; try { dynamic test = runtime.UseFile(@"d:\test.py"); test.SetVariable("y", 4); test.SetVariable("client", UISession.ControllerClient); test.Simple(); } catch (Exception ex) { var eo = engi...

embedding thirdparty application in the panel of my own program using c#.net

can u give me the solution for embedding third party application in the panel of my own program in c#.net. i have the solution for embedding OS application in the panel but i want to call the third party in the panel of my .net program ...

embedding a third party exe within the panel of c#.net program

how to embed third party exe within the panel of my c#.net program by panel i mean a toolbox control that is drag and droppred in the winform. ...

Is that possible to embbed Scheme(lisp) interpreter into iPhone app?

Hi. I'm finding embeddable Scheme interpreter(or JIT compiler or anything) into Cocoa Touch. I think just a C compatible Scheme engine may be fine. Please recommend some. I wish it's MIT/BSD style free license, but commercials are fine too. And.. does Apple AppStore allow embedded scripting like Scheme? ...

embedding images,javascriptfiles in custom server control asp.net

hi everybody, I want to make an html editor like ajax editor. I mean to say everything is merged in a single dll(images,javascript,class). How to accomplish this. Plz Help ...

How do I embed a mp4 movie into my html?

I have a blog section on my site that has the TinyMce editor. I want to embed a video when I post a blog and it's just spitting out the code. I have added the <embed> tag on my output script. This is the code I'm using to for the video: <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/CgW_5Vthsds"&g...

can we increase the size of embedded google presentation?

I am embedding google presentation in my website. But the slides in it are very small and hard to view. Is there some way by I which I could increase the display area of that embedded google presentation. Or, it can't be done at all and I should not waste time searching for it? Thanks ...

How to Overwrite Internet Explorer Dialog's ?

I'm looking for a way to overwrite for example the dialog which pops up if you click on the "browse"-Button of a INPUT type="file" element in an HTML Page. I need to suppress the original dialog and show my own implementation. Is this possible in any way ? ...

Linking/Embedding to a particular page / part of a pdf document?

I'm not even sure if this is possible. Can you create a hyperlink or an embed tag that will display a specified page/section of a pdf document? ...

Can't modify value returned by time.time() in Python code embedded in C++

Hi, I'm facing a very strange problem. The following code: import time target_time = time.time() + 30.0 doesn't work in Python code called from C++ (embedding)! target_time has the same value as time.time() and any attempt to modify it leaves the value unchanged in a pdb console... It happens after I've called root.initialise() ...

How do I embed a transparent SVG object inside an HTML document?

I'm using an SVG object embedded in HTML using the tag. The SVG gets painted with a white background. How can I get rid of it and make the element transparent so that the HTML background shows through. There is supposed to be a way to do this in IE with Adobe's SVG viewer using the wmode attribute. How do I do this in WebKit or Mozilla...

How to embed a graphical interactive IronPython shell in an application?

I've tried the obvious path in my pet open source project RevitPythonShell (a plugin for the building modeling software Autodesk Revit Architecture 2010): code.interact() with the IronPython engine set up to use .NET streams for STDIN and STDOUT. These I then redirect to a TextBox control. It kinda works, but really is only an ugly hack....

Runtime embedding of fonts in Flash CS4 for chinese,japanese, cryllic etc extended characters

Hi I have no problem with runtime embedding of fonts, there are plenty of online tutorials for this. However, what I can't get to work is runtime embedding for extended character sets, even if I omit the unicode range and embed the entire font. I've tried various approaches, and though I am able to runtime embed the font properly, can't...

Embed python interpreter in a python application

Hi, i'm looking for a way to ship the python interpreter with my application (also written in python), so that it doesn't need to have python installed on the machine. I searched google and found a bunch of results about how to embed the python interpreter in applications written in various languages, but nothing for applications writte...

embedding pascal

Is anyone aware of a Pascal interpreter/compiler which is embeddable in C++ (or anything else other than Pascal) applications? I am cloning (for lack of a better word) an application which uses an Object-Pascal compatible scripting language and needs to be script compatible. Am I going to end up writing an interpreter? (!) ...