Parse HTML in Silverlight for Windows Embedded [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to show some files (html format) in a page of my application.
If anyone has an example on how to do this, even remotely related, I would be grateful.
So far I haven't found anything in my searches so I welcome any links, suggestions.
Thanks.

It depends on the OS version you are using and its configuration, but you should be able to use the HTML/DHTML APIs:
http://msdn.microsoft.com/en-us/library/ee492824(v=winembedded.60).aspx
If you need to rendere some HTML (and not just parse it) you may host the browser control inside your application and define a Win32 XAML controls that will contain it. This control doesn't support all the XAML features (rotation, transparency etc.) but can be placed inside a layout and controlled by your app.

Related

how to make a installation like window in c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am making software and want to make a user interface for installation. I would appriciate if anyone could give me any tips, hints, or links which would get em started
I want my installation window to look like this
There a are lots of tools to generate Installer tools for Windows.
I have had good experience with WiX[1] and InnoSetup[2] so far. NSIS[3] is also an alternative.
WiX uses XML to define your installer, InnoSetup uses the Pascal language.
[1] http://wixtoolset.org/
[2] http://www.jrsoftware.org/isinfo.php
[3] http://nsis.sourceforge.net/Main_Page

Can we incorporate Adobe Bracket into PySide TextEditor? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to incorporate Adobe Bracket in my python-pyside program. Can it be done? If not, are there any other open source text editor that can be incorporate into my pyside program.
Please, also tell me how it can be done?
Adobe Bracket is a html/css/js editor hosted in a CEF browser. You can embed CEF browser in Python using CEF Python, so theoretically it should be possible. Here is an example of embedding CEF browser in PySide app.
Adobe Bracket's javascript code is communicating with C++ via javascript bindings (to save a file to a hard drive for example), so it would be required to reimplement some set of features in Python.

Is there a software project index? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am working on a platform to collect various data of software projects (e.g. code repository, issues, etc). Now I would like to create an index over software project, but before I do so on my own, I wanted to ask whether such an index already exists.
Ideally, such an index would list various (open source) software projects and offer data and URLs related to them. What I would need is at least the project name as well as the URLs to the code repository and to the issue tracker. An API to gather this information then would make it perfect.
Is anybody aware of such an index?
Have you come across ohloh.net? It's the closest thing I can think of from what you have stated.

Integrating Latex into my desktop application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm searching for a consultation, or maybe an opinion, a suggestion, or something like this.
I'm starting a project (desktop application) that is something like an IDE for writing books/reports. I'm planing to introduce LaTeX features, if I can name them in a such way.
So the question is: Is it possible to integrate a LaTeX script or plug-in in my software in order to have the needed features?
Waiting for questions or suggestions on my topic.
Thanks in advance!
P.S. Sorry if this topic was already posted.
Not sure I understand your question correctly. I never heard of some kind of LaTeX library or plugin of some kind, which is readily available to be integrated in other programs.
You tagged your question 'qt' so I assume, you use Qt as your framework. The only way I see to integrate LaTeX into Qt is using QProcess. Write your LaTeX code, start pdflatex with QProcess. The question then is if you can do something with the created pdf file.
Look for MikTeX and TeXworks. If you google those, you should be able to get the links to download those. That should do what you need.

What are some *slick* UI libraries/frameworks/tools for, non-MFC, Win32 C++ apps? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What is a really good Windows, C++, UI library, framework, or tool that will allow me to very simply and easily add a slick look & feel to my native C++ win32 application?
Also;
Slick means skinnable with window background images, fancy buttons, shadows, all that jazz.
This is non-MFC
Supporting Windows XP and beyond
Royalty free licensing (we expect a lot of installs)
VS2008
Qt has all you are asking for.
Another library you might consider is WTL. Open source + small binary footprint = was good for a large number of downloads and installs.
Another possibility you might want to consider is Ultimate++.
Thanks to Scott Hanselman, I have heard of Hilo, even though it looks like its for Windows 7 or newer.