How to display a bitmap image in Visual Studio 2013? - visual-c++

I am trying to make a captcha application in Visual Studio 2013. I wrote all the code in C++ and it is generating the Bitmap image. Now i need to add a UI to this. Since, you cannot use Windows Forms Applications in Visual C++. I am trying to load a win32 console application and add the header files of MFC Application.
I can't figure out how to load the Bitmap images to display in the application. How do i achieve this task.
Thanks in advance. :)

Maybe you can try
Project->Add New Item...->Visual C++->UI->Windows Forms
And then you can use the picturebox UI.

Related

Is there an quivelant to a Tab Control in Linux Monodevelop?

Easy question: I'm new to Linux Desktop Application Development coming from a Microsoft Windows and Visual Studio Desktop Application Development background and am trying to make a basic GUI application in Monodevelop C# that has what's called a Tab Control in Visual Studio. I can't for the life of me though find an equivalent control in Monodevelop under either Containers or Widgets in the Toolbox and Google has been no help. Am I missing something obvious or is a Tab Control an outdated object, design wise, and has been replaced with something else? Thanks in advance!

How to create a program interface (style) like the one used in Visual Studio, Office 2013, GitHub for Windows, etc?

I'd like to know how to create a program interface like the one used in Visual Studio, Office 2013, GitHub for Windows, etc.
Looks like Cosmopolitan Theme for WPF is not the same theme used on those softwares.
To show you the difference between these programs interfaces and common others take a look at those printscreens:
Interfaces I wanna know how to build:
Visual Studio:
Office 2013 (Excel):
GitHub for Windows:
Common Interface:
The difference between these programs is its interfaces. I already downloaded the Visual Studio Express for Windows 8, Visual Studio Express for Windows Desktop and I also looked at Visual Studio Ultimate, but them doesn't have the option the build such kind of interfaces when you create a "New Project...".
Do I need to install a new Template on my VS to be able to build such kind of interface? I think it's some sort of theme for WPF. I'd like to see proves that those applications use this UI style you refer in your answer.
Thanks.
Please note that the look and feel of the application is based on the operating system theme by default.
Your Interfaces have been designed following the Metro UI style. Metro UI apps are Windows 8 only, as they require WinRT.
You can only simulate the Metro style in Windows 7 (and vista) with WPF : you have to use a third party controls (or develop your own), such as these examples :
Modern UI for WPF
MahApps.Metro
Cosmopolitan is just a theme for common controls. For example, there are no pivot or panorama control.
Visual Studio 2012 and GitHub for Windows are WPF applications. Office uses custom controls for the "Metro" look.
WPF and Silverlight provide an easy way to theme an entire application. GitHub is based on the Silverlight theme "Cosmopolitan".
Here are some links for more information.
Cosmopolitan Theme for WPF
Making your WPF app look like the Zune client
Silverlight 4 Application Themes
Mishra Reader (An active open source WPF client with a similar theme)
Office 2013 uses Metro Style and Ribbons. For this you can use Fluent Control Suite. This project also has a Metro Style where you can easily make it like Office 2013. Note that you maybe need the recent dll instead of e.g. the nuget package.
If you want some icons like Office 2013, here i found an icon pack that is close to the Office icons: Axialis Pure Flat 2013 (with costs).
For others without Ribbons, you can use for example MahApps Metro as Cybermaxs suggested and for the docks you can use AvalonDock from the WPF Toolkit. AvalonDock also has a Metro Style. And a Visual Studio 2010 Style. And you can dock your Windows like in Visual Studio, very useful ;)

How to access native word application progress bar using VSTO wordAddIn 2010 using C#

Currently I'm a developing a word addIn using C#. I want to access native word application progress bar using my word addin code. Is there any way to get reference native progress bar object?
Development environment is Visual Studio 2010 using C# 4.0
Thanks in Advance.
Take a look at this Microsoft.Office.Tools.Word.Controls.ProgressBar

Saving data to Excel/PDF from VC++ MFC application

I have written an ERP application wherein the user wants to save few reports directly to Excel and PDF. Right now I'm displaying the reports in List Control, which has to be saved to spreadsheet or PDF. I've written the application in VC++ MFC with Visual Studio 2005. Please help me how to do this.
To create PDF files I'd recommend
libHARU. It's excellent - fast
and easy to use.
For Excel files manipulation please see: How to
automate Excel from MFC and Visual
C++ 2005.

is it possible to make my own toolbar for an internet browser using visual c++?

we everyday use toolbars on browser such as google's, microsoft students',...
i was wondering how to create one using vc++ ?
Check below URLs for how to build toolbar for Internet explorer
http://msdn.microsoft.com/en-us/library/bb735854%28VS.85%29.aspx
http://www.codeproject.com/KB/shell/ietoolbartutorial.aspx

Resources