Click here to Skip to main content
15,902,938 members
Everything / Embedding

Embedding

embedding

Great Reads

by TUKET BO
In this tutorial, we will learn how to embed Python in a C++ application. In particular, we are going to see an example in which we will be able to interact with a GUI (made with GTK+).
by Anupam_Datta
Motion activated Pushbullet notification from your Arduino to your Smart Gadgets
by PyroStrex
Example of loading external scripting and external XAML with VB.NET and NeoLua
by Emiliarge
Comparison of 4 browser engines and controls + some tips for using them (in attached projects and in tip text). Short and clear.

Latest Articles

by PyroStrex
Example of loading external scripting and external XAML with VB.NET and NeoLua
by Anupam_Datta
Motion activated Pushbullet notification from your Arduino to your Smart Gadgets
by Ahmed E Osama
Run an executable that is inside the resources in C#
by TUKET BO
In this tutorial, we will learn how to embed Python in a C++ application. In particular, we are going to see an example in which we will be able to interact with a GUI (made with GTK+).

All Articles

Sort by Score

Embedding 

3 Jun 2015 by TUKET BO
In this tutorial, we will learn how to embed Python in a C++ application. In particular, we are going to see an example in which we will be able to interact with a GUI (made with GTK+).
21 Jun 2015 by Anupam_Datta
Motion activated Pushbullet notification from your Arduino to your Smart Gadgets
17 Nov 2015 by PyroStrex
Example of loading external scripting and external XAML with VB.NET and NeoLua
5 Mar 2017 by Jochen Arndt
The code is splitting the 32-bit number inputFileSize into 4 bytes stored to tempByte[] in reverse order. It is similar totempByte[0] = (inputFileSize >> 24) & 0xff;tempByte[1] = (inputFileSize >> 16) & 0xff;tempByte[2] = (inputFileSize >> 8) & 0xff;tempByte[3] = inputFileSize &...
29 Sep 2014 by frksks
Hello,QuestionIs it possible to create assembly which contains two or more .netmodules?If yes, how to achieve that?Which tool should I use?I do not want to reference them, I want to put modules inside assembly.I already found that there are several tools which are able to...
13 Jan 2015 by Member 8688768
Hey, i would like to emblem a game build on Unity 3D (i have the .exe and the data folder) in my application made on Visual Studio using C#.More detailed, i would like something like this : Image Here I did that using...
24 Mar 2015 by Member 11553578
I have a wpf application which running. I want to embed to mvc.
15 Apr 2015 by Corey Avery
Hi everyone. This is my first post and I'm totally new here, so if I break any rules I apologize.I have a fairly complex (to me anyways) project I need done for my website, and I don't know where to find the right developer to work on it. I need a widget that third party site owners can VERY...
27 Jun 2016 by Simon Langdon
I've got a CPropertySheet derived class with a load of CPropertyPages. Is there a way I can put a PropertySheet (and pages) onto one of the pages? It might make for an awful GUI, but I'm just experimenting at the moment.1. I don't think I can derive a class from both PropertySheet and...
6 Mar 2017 by Patrice T
When you don't understand what your code is doing or why it does what it does, the answer is debugger.Use the debugger to see what your code is doing. Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute, it...
30 Oct 2019 by datadrvn
Hi All, My first post here... :-) I'm fairly new to web development and I've just been tasked this and I don't know where to start. I would like to embedded a video into the homepage of a website. When people visit they see the video (with audio) once, then the video loops (and the audio...
30 Oct 2019 by Dave Kreskowiak
This is only possible if the player you have in your page supports muting the audio from javascript code. I don't know of any myself. But, there's a reason why NOBODY worth their weight has sound on their web pages when they load. It's annoying and makes people hit "close tab" faster than they...
1 Feb 2015 by Emiliarge
Comparison of 4 browser engines and controls + some tips for using them (in attached projects and in tip text). Short and clear.
6 Nov 2014 by KRISHNA ANIPINDI
A beginner's introduction to .NET Micro Framework and the tools required to get started with it...
13 Jan 2015 by Zoltán Zörgő
I don't know what this AppControl.ApplicationControl component is. The SetParent API can be used to "embed" external application "into" an other form, like this:public partial class Form1 : Form { [DllImport("user32.dll", SetLastError = true)] static extern IntPtr...
17 Jun 2015 by Ahmed E Osama
Run an executable that is inside the resources in C#
6 Mar 2017 by Member 12910589
Someone please explain what does this code do ... i m working on audio steganography for(i=24, j=0; i>=0; i-=8, j++) { tempInt= inputFileSize; tempInt>>= i; tempInt&= 0x000000FF; tempByte[j]= (byte) tempInt; }What I have tried:why the loop starts from 24??.
5 Mar 2015 by Member 11349019
Hi,can any help with code to get the excel sheet embed in my windows application dot.net. I have already downloaded the sample code from code project. it not working as it should.RegardsRNS