Beginner's question - where is the form?

Hi
I've just installed Visual Studio Express 2013 (success on the third try).  It now runs and I have created a project BUT I cannot see the Windows form upon which to place my controls etc.
The application is developed using the project wizard, C++, Windows forms application.  I have not entered any code and only have the files that are automatically created.  When I run (debug) the application, it runs and a form appears
with basic controls only (a couple of default menu items) and, needless to say, it has no functionality.
I now wish to add a control onto the form.  My problem is that I can't view the form to drag the control onto, from the toolbox.
Does the form get automatically created as a form for use at design time, or is the application just creating a default one at run-time?
There does not appear to be a form in the solution explorer.  Also pressing F7 does not show me the form - I can only see the code window.  Right-clicking on the code window tab does not offer any way to view the form associated with this application.
I did consider adding a form of my own, however I got a warning about this saying that if I added a form it would change the application from "native" (whatever that means) to CLR.  Do I want to do this?  Or should that question be: how
do I decide whether I want to do this or not?
And if I did add a form of my own, would it automatically be (or become) the 'main' form, and if not, how would I make it the main form?
I just want a C++ Windows application that I can add some controls to.
I did try to use Help to assist me but swiftly realised that this was not going to be easy.

Hi BulletToTheBrian,
Thank you for posting in MSDN forum.
According to your description, you mean that you want to create a windows form app using C++ language, am I right?
If yes, as far as I know that there have no the windows form project template in the C++ language like the following screen shot.
Based on your issue, could you please tell me what version of VS 2013 Express you install on your machine?
If you want to create a windows form project using the VS2013 Express, I suggest you will need to install the VS2013 Express for Windows Desktop.
For more information about the different version of VS 2013 Express, please see:
https://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx
After you installed the VS2013 Express for Windows Desktop, I suggest you could refer the following MSDN document to create a simple windows form project and then check if you still get same issue.
https://msdn.microsoft.com/en-us/library/dd492132.aspx
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Where is the form / forum to submit BSOD caused by Photoshop CS4 to the technical support ?

    Where is the form / forum to submit BSOD caused by Photoshop CS4 to the technical support ?

    But if it will make you feel better, the bug report form is here:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    As Bob said, though, this is generally a hardware/driver issue of some sort. I've just seen a case where some malware was causing BSOD when trying to run or install a scanner. When I got the malware off the machine the BSOD problem was instantly cured.

  • Newbie cluster question: where does the admin server live?

    Hello, I'm looking at clustering for our application where I work, and so I'm reading through the cluster-related documentation for 11g. I have a sort of an architecture question: where should the admin server be started? Hypothetically speaking, if you have two nodes for your cluster, would the AdminServer run on a 3rd box which sort of stood in front of the two nodes?
    Thanks much -

    The ideal situation would be for your admin server to be separate from the machines hosting your managed server. This allows you to control access to the admin server, eliminate the performance impact if you have the admin + managed on the same host, and limits impact if youir #1 host fails, etc.
    But companies may be unwilling to invest in a distinct (3rd) host just for the admin server, especially if you have multiple environments ( prod, testing, dev, etc. ).
    So usually the admin winds up sharing the host with a managed server.

  • Designer beginner's question: How to populate form with XML web service output?

    sorry, here is yet another Adobe Designer beginners question: <br /><br />My form uses a webservice data connection which returns <br />an xml-string like this: <br /><br /><?xml version="1.0" encoding="utf-16"?> <br /><CurrentWeather> <br />  <Location>Sion, Switzerland (LSGS) 46-13N 007-20E 481M</Location> <br />  <Time>Apr 26, 2007 - 09:50 AM EDT / 2007.04.26 1350 UTC</Time> <br />  <Wind> from the WSW (240 degrees) at 15 MPH (13 KT):0</Wind> <br />  <Visibility> greater than 7 mile(s):0</Visibility> <br />  <SkyConditions> partly cloudy</SkyConditions> <br />  <Temperature> 80 F (27 C)</Temperature> <br />  <DewPoint> 46 F (8 C) </DewPoint> <br />  <RelativeHumidity> 30%</RelativeHumidity> <br />  <Pressure> 29.88 in. Hg (1012 hPa)</Pressure> <br />  <Status>Success</Status> <br /></CurrentWeather> <br /><br />What is the simplest and recommended way to extract the <br />element fields to my form? <br /><br />Thank you very much an kind regards, <br />Hans Grund

    The question is still unanswered!
    Let me give some details and break up the problem
    in more specific questions:
    - In Designer 8.1 I click new data binding --> wsdl -->
    http://www.webservicex.net/globalweather.asmx?wsdl
    A message box comes up and says "cannot load wsdl file"
    ==> 1. Question:
    Why maybe refuses Designer to load the http-wsdl,
    although this option is explicitly allowed?
    - When I save the wsdl to a file, Designer loads it
    without any problems. The web service uses two input parameters
    (CountryName and CityName) and returns an xml-string GetWeatherResult)
    like the one in my first posting. I drag these fields from the binding view to my form, and it runs ok!
    - THE PROBLEM IS, THAT I NEET TO EXTRACT THE ELEMENT FIELDS
    FROM THE RESULT XML-STRING!
    ==> 2. Question:
    How to extract xml element fields from wsdl output into a form?
    - I tried with eclipse and XmlSpy to build a modified wsdl file
    with structured output definition, so that the specific element fields
    show up in the data binding view and are usable to my form,
    and the modified wsdl maps consistently to the web service result string.
    So far without success: In the PDF -preview or Reader-
    when the wsdl-binding is executed and the web service output
    should show up in the result fields, just nothing happens.
    ==> 3. Question:
    Can this strategy to provide a "modified wsdl" possibly succeed,
    and how?
    ==> 4. Question:
    Is is possible -and how?- to check whether an xml string
    is valid as web service output against the wsdl-definition?
    ==> 5. Question:
    How to debug a web service connection with Designer?
    - Finally I tried to find a way to load the result xml-string
    into a local var in the script editor and parse it, much like:
    var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
    xmlDoc.load(DataSet.MyForm.GetWeatherResult.rawValue);
    ==> 6. Question:
    Is it possible -and how?- to use a framework like dotnet?
    How to utilize SAX or DOM in Designer?
    Many thanks and appreciations for your help!!

  • Newbie question-where to find forms development tool?

    I downloaded oracle 10g 10.0.2 enterprise or AS and my database is running, but I don't know where to find forms and navigation tools?
    please suggest me as i am practicing forms and developer as well, what products to download and what needs to be done...during install and to get those tools

    Hello,
    On the OTN site follow the link :
    Product center -> Middleware -> Forms Service
    http://www.oracle.com/technology/products/forms/index.html
    Then click the resource(software link)
    I suggest you to download the last version (Oracle Developer Suite 10g Release 2) and install it in it own Oracle Home
    Francois

  • HT201304 Where is the form to request the "refund for in-app purchases made by a minor?

    Where is the refund request form located on your website. I am looking for the "Refund for in-app purchases made by a minor"

    How to report/refund an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    In th furuter set the Restrictions that prevent in-app purchases
    Also you can try:
    https://getsupport.apple.com/ServiceOptionAction.do

  • Meaningful Data from 'questions' - done in the form of a quiz

    I'm trying to get some meaning data from a quiz - currently i get back a series of numbers and commas - like this:
    Core Data
    "Status","Location","Raw Score","Max Score","Min Score","Time"
    "completed","4","0","0","0","00:00:18"
    That doesnt say how they answered?  Perhaps i'm using the wrong question type.
    I'm not quizzing these people as such, just using the quiz functionality to get them to answer a series of questions.  I've gone for the type "Rating Scale-Survey questions"
    The questions I’m asking are :
    "Would you like to hear about the following deals we've got on:"
    a) - application 1 (yes or no)
    b) - application 2 (yes or no)
    And
    "when choosing your training, how important is x on a scale of 1-5"
    Is there a better way of doing these questions?
    Does anyone know of a good place to find templates for this sort of thing where we can stick our project logos and branding?

    Hi there
    See if the link below holds a answer here.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • I found the answer to my question where are the file, edit tools, etc menus

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    file, tool, edit menus can be found by hitting the alt key
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1
    == Plugins installed
    ==
    *-Logitech Device Detection
    *Version 1.1.2.0
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Adobe PDF Plug-In For Firefox and Netscape 8.2.2
    *Default Plug-in
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Google Update
    *Shockwave Flash 10.0 r45
    *iTunes Detector Plug-in
    *Picasa plugin
    *Next Generation Java Plug-in 1.6.0_19 for Mozilla browsers
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    Your question is number 866019.

  • OWAS Question, Where is the owa executable?

    After installing OWAS on my linux 5.1, I can not find the owa
    that is supposed to be in the $ORACLE_HOME/ows/3.0/bin. This
    owa is for making CGI pl/sql calls instead of going through the
    cartridge. Am I missing some steps here? I am pretty sure I
    installed the whole package. Helps will be appreciated!
    Yizhong
    null

    Are you saying with Webstart in Java 5.0 that client logs are logged on the server if logging is enabled? I do not see any client logging information in my server logs....
    I, too, cannot find the webstart client log and have logging enabled. In 1.4 you could set the location but in 5.0 the log file is where???
    There is no javaws.log anywhere on my machine after several application invocations with logging enabled...
    Any comments appreciated...

  • P6N Diamond, SLI question: where does the 2nd card go?

    As per title, I have a P6N Diamond motherboard with 4 video card slots (four PCI-e x16), two yellow + two white. I have a single GPU/card in the first slot as usual, but I got a 2nd GPU/card today. Where does it go so I could get 16x16 SLI? Manual is unclear.
    2nd white slot (third PCI-e x16) or the yellow (second PCI-e x16) ?
    I ask because this motherboard has non-standard color coding. Even the RAM slots are not color coded (channel-wise). Instead of A-B-A-B color arrangement on the RAM slots as every other motherboard out there, this motherboard has A-A-B-B arrangement.

    Update: First of all, the case connectors on the motherboard are in the way for SLI purposes. They are too tall and block the insertion of the second card. On my old ASUS moterboard the case pins were on the bottom of the PCB, out of the way, but on this MSI motherboard they are on the side, lined up with the PCI-e x16 slot. Really dumb design! It might be fine for short video cards like 9600GT or similar, but for extended length dual slot video cards like GTX260 (which what I'm using) they are in the way, so much that the second card can't be inserted into the slot at all.
    I spent two hours modding the connectors. I had to snap and break the plastic plugs, remove the metal pins and mod them so they are only 3mm tall, instead of 9mm. I know this motherboard is old so MSI couldn't plan for GTX260/280 and other long cards, but cards like 7950GX2 and similar did exist and predate this motherboard so there is no excuse for MSI for placing the connectors in that position.
    Anyways, warning for any P6N Diamond owners: if you have extended length or longer dual slot video cards like GTX 260, GTX 280, and 4870x2 you will have problems with clearance and would need to do some severe modding or get a different motherboard.

  • Change the remittance output  where tofind the form layout name

    I am trying to change the remittance output ,
    Can anyone let me know how to find the script that is attached to this remittance program whcih is given out in the Payment run transaciton F110,
    Thanx in advance

    Goto <b>FBZP transaction</b> and in the payment methods for company code push button u can see the attached form there for the respective company code.
    Hope this’ll give you idea!!
    <b>P.S award the points.</b>
    Good luck
    Thanks
    Saquib Khan
    "Some are wise and some are otherwise"

  • Where is the former list of 'news headlines'? used to be under 'tools,' I think.

    the summary says it all--something was there, and now isn't. The list of headlines came from the BBC, but isn't there anymore. thanks for your attention.

    hello, this was just a normal rss-feed - you can re-add it by just visiting http://fxfeeds.mozilla.org/rss20.xml & subscribing to it using ''live bookmarks''.
    http://kb.mozillazine.org/Live_Bookmarks_-_Firefox
    [[Use bookmark folders to organize your bookmarks]]

  • I would like to email EE with a question, where is the email?

    I want a quote for 2 land lines (already have them with BT) +unlimited calls.2 mobile sims - unlimited calls, texts etc.Fast fixed broadband - unlimited usageHow do I get a quote by email please?I am a small business (PUB).

    Gingin wrote:
    I want a quote for 2 land lines (already have them with BT) +unlimited calls..
    Is that with BB on both lines? EE don't do freestanding landlines.
    EE will never match BT's excellent online voice fault monitoring service. You'd have to phone them up every time. I wouldm't risk a business with them. Only consider EE for the mobile service.
    You won't get a quote by email. You need to phone EE Sales.

  • Simple beginner's question: What's the quickest way to export a single clip?

    I've started using Premier Elements because this was taking too long on my previous editor.
    I'm a piano teacher who uses video as one of the aids for my pupils, and I often record a whole book in one sitting, announcing the titles of the pieces as I go, then clipping my announcmeents (and false starts, swearing, etc) when editing, and adding text titles instead. These are then uploaded to pupils'own poages on my teaching website.
    However, many of my pupils want to work from single clips.
    My previous method was to keep deleting everything from the project except the clip I want, processing that, then opening the project again withut saving. This seems to me a complete waste of my time if I can export one clip at a time.
    I've only been using Premier Elements one day, so maybe there's something obvius I've missed! Someone, please tell me there's a quicker way than what I'm doing! There might be up to 40 clips in one video

    Thanks, Bill! Actually version 9 looks a little clearer than that, as it has two bold clear white paddles to mark the edge of the work area.
    I was a little frustrated at first, because whatever I did, it still took a year and exported the entire video.
    Then:
    I caught sight of this teeny tiny box waiting for a tick from me, which said:
    Share Work area Bar Only
    We have lift-off 
    Thanks again. So much quicker than all that deleting ahnd hoping you don't accidentally say "yes" when prompted to save changes!

  • Forms Builder / SAP Demo News / Where is the Savepath specified?

    Hi there,
    i just want to check out how the forms Builder work and if i can use it for some little things in our Portal.. so i wanna try the SAP Demo News....
    So i think i check how it works.. but i have only one question.. where in the Forms Builder in SAP Demo News is specified where the news are saved when i write one?
    So the Standart Path is: \documents\News
    So what is if i want to change the path to:  \Documents\xyz
    Where in the Form i have to specifie this?
    Regards
    Bjoern

    Hi,
    Chk this thread.. [http://forums.sdn.sap.com/thread.jspa?messageID=1503773]
    You can pass the path as parameter (post/path=) to the url.
    For example
    http://server/irj/servlet/prt/portal/prtroot/com.sap.km.cm.xmlformedit?XMLFormID=new_form&post/path=/documents/UserMessages
    Also change the configuration of km folder to your new folder. This will alow to edit the news directly from km folder.
    Go to System administration -> System configuration -> Knowledge Management -> Content Management -> Form Based Publishing -> forms availability.
    Creat an id with the following properties -  the folder path within which the form has to appear for e.g., /documents/News and under the Forms to Include - Mention the XML forms to be included.
    Please check the below document.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ee639033-0801-0010-0883-b2c76b18583a]
    Regards
    Baby

Maybe you are looking for

  • How to get table headers in jsp page

    hi, this is praveen, can any one help me to solve this problem. how to get table headers in a jsp page. whether it is possible using javascript or is there any other way. pls send rep. thank u.

  • Dump in approval preview

    Hi, We are in SRM 7.0, When we click on tab ' Approval process overview' we get dump. The details of the dump are as follows No access possible via the NULL data reference. Current ABAP program "/SAPSRM/CL_CH_WD_DOM_APV_IT==CP" had to be terminated b

  • Can't cpnnect to router (brick). Resetting doesn't seem to work.

    I tried installing the newest firmware to my WRT54G V4 router. Installation failed midway through and now my router's power light is flashing. When I try connecting it to my computer and searching for a Default Gateway, nothing comes up. What can I d

  • Pls help to correct my code

    Hai Java Guru. I am new to java , i got an exception while i practicing on packages. I did a program which have two packages and one of them have a function, And i access this function from other packages , and i got a run time error like NoclassDeff

  • Programmatically Turn Off Printing (Acrobat 6.0)

    Hello. I'm searching (fruitlessly so far) for an option to turn off printing on a PDF. I've gone down multiple avenues and have come up empty to date. My company is using Documentum SCS and Content Transformation Services (Documentum) to export/conve