How to do regstration of Visual studio express 2008

Hi I have some supporting Development tools, which run on the 2008 platform. I on my new PC installed the visual studio Express 2008, but after month its blocked by missing registration. When I follow the registration link, the site is closed. SO how can
I get the visual studio Express 2008 back in operation

Visual C++ 2008 Express is no longer supported. You really should consider a newer version. Bear in mind that Visual Studio 2013 Community Edition is free, and contains way more features than your version.
However if you need the 2008 version apparently if you download the ISO version of Visual C++ 2008 Express, you don't need to register. Try these links:
Just VS 2008 Express
http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso
VS 2008 Express SP1
http://download.microsoft.com/download/E/8/E/E8EEB394-7F42-4963-A2D8-29559B738298/VS2008ExpressWithSP1ENUX1504728.iso

Similar Messages

  • How do I create a view in SQL Server in Visual Studio Express 2013 for Desktop?

    Hi
    I've got a SQL Server database set up using the internal SQL Server in Visual Studio Express 2013 for Desktop. I want to create a view (using tables with one to many relationships) but I don't
    know how to do it.
    Where can I find a good tutorial on creating views in SQL Server in Visual Studio Express 2013 for Desktop? I think Visual Studio Express 2013 for Desktop doesn't have some view designer that
    exists in the non-express version of Visual Studio (if I'm not mistaken). So I think I'd need a tutorial on how to do the actual SQL, unless there is some tool I don't know about.
    Thanks

    Hi ,
    According to your description, if you install SQL Server SQL Server 2014 Express and SQL Server Manager Studio tools (SSMS), if you want to create a view, you can use SSMS. Then if you want to connect to and Diagram your SQL Express Database in Visual Studio
    2013, you can attach the database file by using the .NET Framework Data Provider for SQL Server in Visual Studio, and create a database diagram via expanding the “Database Diagrams” node.
     For more information, there is similar issue about how to connect to and Diagram your SQL Express Database in Visual Studio 2012 , you can review the following article,
    http://blogs.msdn.com/b/bethmassi/archive/2011/10/27/how-to-connect-to-and-diagram-your-sql-express-database-in-visual-studio-lightswitch.aspx.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • How to prevent "Sign in" dialog on first launch of Visual Studio Express 2013?

    I am installing Visual Studio Express 2013. When I launch application shortcut for first time, It shows "sign in" window, which I want to hide for the users. This window also overrides all my settings (e.g. disabled "automatic check for
    updates"). Is there any way to prevent this dialog from appearing?

    Hi,
    >>I was looking for file or registry settings to suppress this dialog
    As far as I know, there is no way to realize this. It is by design. Since the users will sign in later, why need to suppress the dialog. What's more, this is an express edition, so you can't find any third-party add-in to help hide the dialog because Visual
    Studio Express doesn't support third-party add-ins. The only way you want the dialog not showing is to click "cancel" button the first time the dialog pop up. After that, you still can sign in if you want to. Click "Help", choose "register product", then
    you can sign in the appearing dialog.
    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.

  • Editing pages created using dreamweaver with microsoft's visual studio express

    Here's a quick, somewhat vague, question for anyone who might have an answer. Is there a trick to editing pages created using dreamweaver with Microsoft Visual Studio Express? The reason I ask is I recently finished a web site for my first client who now wants to make edits herself using the program she uses, that being Microsoft. I thought it would be as easy as pulling the html files from the server (or the usb flash drive i gave her), making changes and then putting them back to the server, but apparently she is having some problems. I'm meeting with her soon. I have no experience with any other programs, other than Adobe, so I don't know how much good I'll be in helping her. Maybe it's an easy question, maybe not. Any info appreciated. Thanks!

    David wrote -
    Dreamweaver template commands are all wrapped in HTML comments, so they
    shouldn't cause any problems. They should simply be treated as comments.
    However, the concept of editable and locked regions will be ignored.
    Hi David, I meant the templates with the dwt extension, not the html files that are created from them. The full version of VS will recognize the dwt extension as 'Dynamic Web Template' but as this is a microsoft extension it does not recognize the code for editing and shows a large number of errors, (before anyone comments the dwt file extension is used by a number of other programs, all referring to a different file type).
    PZ

  • How to edit content in Visual Studio

    Hello,
    I used Windows App Studio to create an app:
    http://www.windowsphone.com/en-ca/store/app/%E5%A6%99%E6%B3%95%E8%93%AE%E8%8F%AF%E7%B6%93%E8%A7%80%E4%B8%96%E9%9F%B3%E8%8F%A9%E8%96%A9%E6%99%AE%E9%96%80%E5%93%81/388838ac-7fb1-4a6c-9583-634d5199e6c7
    However, there is a word limitation for each page.  Hence, I download Visual Studio Express 2013 for windows.  
    I use Visual Studio to open my Source Code for the app above (the source code is generated when I publish the app), and i try to find my "words" context.  I went through all the folders at Solution Explorer on my right hand side, but i am
    unable to find my content.   I click the "box" that should have contained my text at Main Page. Xaml, and that empty box is called Hubsection.
    I want to make my 2 pages content in my current app into 1 page.  At Windows app studio, they said I have too many words, and i must break it into 2 pages.  
    Please help me if you know what to do.
    Thanks!
    Mucc

    Hi,
    Here is a sample code to send email:
    public static string SendEmail(
    SPWeb spWeb,
    string from,
    string to,
    string cc,
    string bcc,
    string subject,
    string body,
    bool isBodyHtml)
    LogHelper.LogMethodStart(logger, "SPEmailHelper", "SendEmail");
    string emailSummary;
    var messageHeaders = new StringDictionary();
    ValidationHelper.VerifyStringArgument(to, "to");
    ValidationHelper.VerifyStringArgument(from, "from");
    ValidationHelper.VerifyStringArgument(subject, "subject");
    ValidationHelper.VerifyStringArgument(cc, "cc");
    ValidationHelper.VerifyStringArgument(bcc, "bcc");
    messageHeaders.Add("to", to);
    messageHeaders.Add("from", from);
    messageHeaders.Add("subject", subject);
    messageHeaders.Add("cc", cc);
    messageHeaders.Add("bcc", bcc);
    string mimeType = "text/plain";
    if (isBodyHtml)
    mimeType = "text/html";
    messageHeaders.Add("content-type", mimeType);
    bool sendMail = SPUtility.SendEmail(
    spWeb,
    messageHeaders,
    body);
    if (sendMail)
    emailSummary = "<EmailMessage>" +
    "<To>" + to + "</To>" +
    "<From>" + from + "</From>" +
    "<Subject>" +
    SPEncode.HtmlEncode(subject) +
    "</Subject>" +
    "<CC>" + cc + "</CC>" +
    "<BCC>" + bcc + "</BCC>" +
    "<Body>" +
    SPEncode.HtmlEncode(body) +
    "</Body>" +
    "</EmailMesage>";
    else
    throw new SafException("Failed to send email.");
    LogHelper.LogMethodEnd(logger, "SPEmailHelper", "SendEmail");
    return emailSummary;
    Source: https://www.collaboris.com/blogs/collaboris-blog/mark-jones/2012/11/06/code-sample-how-to-programmatically-send-an-email-in-sharepoint#.VN3GG9eqqko
    Please remember to up-vote or mark the reply as answer if you find it helpful.

  • Just installed Visual Studio express 2013. Start menu folder empty.

    I just installed Visual Studio express 2013 For desktop.  On to my windows 7, 64 bit laptop.
    After it installs it asks you if you would like to launch the program.  So I clicked launch.  And it never launched.
    Furthermore when I go Into my start menu.  I find why the Visual Studio 2013 folder.
    And it's empty.
    So I went ahead and tried to reinstall Visual Studio express 2013.
    After I reinstalled it I had to restart my computer.  I have done that.  And my start menu folder is still empty.
    I have no way of finding the executable file for Visual Studio express 2013.
    And if I could I'm not confident that it would launch.
    I decided maybe I should uninstalled completely and reinstall it.
    I went to control panel>uninstall a program.
    I selected Microsoft Visual Studio express 2013.
    And then I selected uninstall.
    a window pops up that says.  " Microsoft Visual Studio express 2013 for windows desktop has stopped working.   A problem caused the program to stop working correctly .  Windows will close the program and notify you if a solution is available.".
    so I can't fully uninstall the program.  And reinstalling the program doesn't help.
    why is this happening. What do I do. How do I fix this?

    Hi HAL9090,
    >>I find why the Visual Studio 2013 folder. And it's empty. And my start menu folder is still empty.
    Do you mean that you can't find VS2013 in the start menu? Please click "All Programs" in the start menu to see if you can find it.
    If you still can't find it, could you please tell us how you install it? From the web installer or by the downloaded setup file? If you have the ISO image, I suggest you verify its checksum. Perhaps you need to re-download one. If you have no one, please
    download it from
    Microsoft Visual Studio Express 2013 with Update 4 for Windows Desktop - English
    DVD5 ISO image
    The correct checksum is
    4AE40D10B303C034F6D6230CE21F0295E5CD708C
    You can download the
    fciv.exe tool to verify the checksum.
    Once it matches the correct one, please make sure that your windows is patched up and disable the anti-virus software. At last, install VS.
    What's more, it seems that you can't uninstall VS2013. If you want to uninstall it, you can use the setup file to uninstall it. Please double click it to open it, then you can choose to uninstall it in the pop up dialog.
    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.

  • Installation Problem Visual Studio Express 2013 for Web on Windows 8.1

    Hi,
    I am new to Microsoft developing tools and I have spent the last two days trying to install VS Express 2013 for Web on my laptop that's running windows 8.1 (X64,Intel
    Core i5 3337U (1.80GHz)).
     I run it as an administrator and have enough space on the disk. However, I keep on getting the same error. 
    Microsoft Visual Studio Express 2013 for Web - ENU Fatal error during installation.
    After uninstalling and deleting the temp files, I get an additional error.
    Entity Framework 6.1.1 Tools for Visual Studio 2013
    User cancelled installation.
    In my log files here are some of the problems that I saw:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'bliss_core_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot'; variable = 'DisableRootAutoUpdate'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft Corporation\DataFxTools\12.0.0.0'; variable = 'EFTools_2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'help3vs_49_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'IEsvcVersionExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'IEsvcVersion' to value '11.0.9600.17631'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\3B1EFD3A66EA28B16697394703A72CA340A05BD5'; variable = 'MicrosoftRootCertificateAuthority2010AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\8F43288AD272F3103B6FB1428485EA3014C0BCFE'; variable = 'MicrosoftRootCertificateAuthority2011AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_CBSValue' to value '1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_DetectKey' to value '4.5.51641'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'NetFxFullRedist_InstalledRelease' to value '378675'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'NetFxFullRedist_InstalledReleaseExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'OS_BuildNumber' to value '9600'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x64_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x64_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x86_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x86_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SSDT\12.0\1033'; variable = 'ssdt_lang_detect_enu'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\teamExplorerCore'; variable = 'teamExplorercore_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'teamExplorercore_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'VSComponentPathVariable' to value ''
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'vsupdate_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x64_en_usmsi_902_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x86_en_usmsi_901_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 12'; variable = 'WebTools_VS2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 2013'; variable = 'WebTools_VS2013_VersionKey_2'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 12 for Web'; variable = 'WebTools_VWD2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 2013 for Web'; variable = 'WebTools_VWD2013_VersionKey_2'
    The last line of my log file contained this:
    [0354:1418][2015-02-23T14:02:26]i399: Apply complete, result: 0x80070643, restart: None, ba requested restart:  No
    I really need to have this up and running as soon as possible. Any help would be greatly appreciated. 
    Thanks!

    Hi,
    By the errors:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    It maybe a registry or administrator issue.
    Please install VS with administrator.
    What's more, it maybe a corrupt registry issue. And you can't install any version of Visual Studio, I think you can use the tool to fix problems that programs cannot be installed or uninstalled. It also can fix the corrupted registry keys.
    http://support.microsoft.com/mats/program_install_and_uninstall/en-us
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • No JavaScript Intellisense in Visual Studio Express 12 For Windows Phone

    I'm developing mobile app for windows phone using Windows phone 8 SDK (Visual Studio Express 12 For Windows Phone). I want to use code auto-Complete facilities when coding in Javascript. For that I need to use Intellisense for JS.
    According to my knowledge, To configure Intellisense according to my knowledge,It have navigate to the [Tools] > [Options] > Text Editor > JavaScript > IntelliSense >
    But in my [Tools] > [Options] > Text Editor > list there is No item called JavaScript.
    Please help me for solve this.

    Hi AmilaEranga,
    I try to test it in my side, I could get the JavaScript Text Editor in my side.
    So I doubt that it would be your VS IDE issue. If possible, please download it from the official site here:
    http://www.microsoft.com/en-us/download/details.aspx?id=30664
    And then repair your VS, test it again.
    Or you could run the following command lines with the Developer Command Prompt of VS2012:
    devenv /setup
    devenv.exe /InstallVSTemplates
    Best Regards,
    Jack
    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.

  • Error while installing Visual Studio Express 2013 with Update 4 for Windows Desktop.

    When I try to install Visual Studio Express 2013 with Update 4 for Windows Desktop, I
    get the error :
    Microsoft Visual Studio Express 2013 for Windows Desktop.The form specified for the subject is not one supported or known by the specified trust provider.
    Here is what I get when I use the File Checksum Integrity Verifier (NOTE: I couldn't find the SHA Hash for the .iso I downloaded)
    // File Checksum Integrity Verifier version 2.05.
    8ab9b5ff10da1c33bb3f088331a7c8d8 vs2013.4_dskexp_enu.iso
    Here is some Extra Information:
    MY OS: Windows Technical Preview x86ANOTHER OS I TRIED INSTALLING VB ON: Windows 7 Ultimate x86
    DOWNLOADED ISO FROM: http://www.visualstudio.com/en-us/downloadsLINK: http://download.microsoft.com/download/9/6/4/96442E58-C65C-4122-A956-CCA83EECCD03/vs2013.4_dskexp_ENU.iso
    LOG FILE: http://m.uploadedit.com/b044/1421425243589.txtSHA HASH OF THE RECEIVED ISO: 8ab9b5ff10da1c33bb3f088331a7c8d8
    ====================================================NOTES:
    #I ran the setup as an administrator.
    #I do not know the SHA Hash for the ISO so please check if it matches the SHA Hash of the actual file.#Please don't recommend to use the Web Installer.#I tried both extracting the ISO and Mounting the ISO to run the Setup.
    Thanks. :D

    Solved.   The ISO is corrupt.
    The SHA 1 Hash of the ISO was 57CF28106EA096758AD6AB909F226A3468D95A49
    and the downloaded one returned 8ab9b5ff10da1c33bb3f088331a7c8d8.

  • Connecting BI Web Server with SQL Server Express / Visual Studio Express for Report Development

    Hi,
    My company is using the Report Builder 3.0 to build the BI Reports ( I guess based on SQL Server 2008 R2). Our software vendor has provided us the web URL to access the BI Server. I want to generate the BI Reports with SQL Server Express or  Visual
    Studio Express instead of Report Builder 3.0. Need some guidance in this regard.
    regards, BI.Developer.

    Hi,
    Based on my research, if we want to open the report from report server to Business Intelligence Development Studio, we should download the report from report manager, then add this item in Business Intelligence Development Studio. For more details, please
    see the following steps:
    Type the URL in IE browser to access the repot manager.
    Browse to the RDL file folder or location.
    Hover over the report, and click the drop-down arrow near the RDL file.
    Click on download button, the download window will pop up now. Then save the rdl file.
    Click Manage option in the drop-down list, make a note of its Data Source Connection string.
    Create a Report Server Project in Business Intelligence Development Studio.
    Right-click the Reports folder to open the Add Existing Item dialog box, navigate to the location where you saved the .rdl file for the report, and then click Add.
    Right-click the Data Source to verify the connection string is correct.
    Besides, please make sure that software vendor had assigned ‘View reports’, ’Manage reports’, ‘Manage folder’ and ‘Manage data sources’ tasks for your account, so that you can download the report and view the data source.
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Visual Studio Express Community 2013 with Update 4

    I'm in college, and the class I am in is programming, so in order to do my work, I need C++ (which our required work is through Visual Studio Express). Unfortunately, after every single time I try to download Visual Studio Express: Community 2013
    with Update 4, it gives me these error messages: "SETUP FAILED! Install cannot continue because some required components failed.", "Visual Studio Core Features: Fatal error during installation", and "Visual Studio Core Features - ENU:
    User cancelled installation". Obviously the last two errors popped up, because of the first error message, but why would it say that some components failed? What exactly does that mean? If someone can please respond quickly, I would be really happy, because
    I need to install this ASAP, in order to do my classwork, homework!!!!

    Hello Eadsele,
    I think the problem is pending on your network. Please try download the ISO and verify its checksum before install, refer to here to verify:
    https://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs
    Best regards,
    Barry
    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.

  • Using MS Visual Studio C++ 2008 Express, the "LoadLibrary" function doesn't recognize the NI-VISA DLL: "visa32.dll". I've included all the paths to the DLL. Is there a problem with this C++ compiler?

    I'm using MS Visual Studio C++ 2008 Express.  I've included all the paths to the DLL, "visa32.dll" but the LoadLibrary("visa32.dll") call returns the statement that can't convert character string to LPCSTR (pointer).  I ran the same code with the Portland Group compiler (which I no longer have) and there was not a problem accessing the DLL.  Is there some requirement for the C++ 2008 Express compiler that needs to be met?

    Hello jterry,
    If you compile as Unicode you need to pass Unicode strings to
    Win32 APIs which have LPTSTR or LPWSTR string.
    When you want to write code compilable for Unicode
    and Ansi just enclose all string constants in _T(). In your case:
    LoadLibrary(_T("visa32.dll"))
    You can look at this post on the microsoft discussion forums for more information.  Have a great day.
    O. Proulx
    National Instruments
    www.ni.com/support

  • Is there a profiler in Visual Studio Express 2013 for Windows Desktop?

    Is there a profiler in Visual Studio Express 2013 for Windows Desktop?  I can't seem to find the option anywhere.

    Hi gnychis1,
    I install it in my Environment, It doesn't have the profiler tool in this express version.
    My suggestion is that you could use the VS2013 Community version, it is also free, but it has the profiler tool in this version.
    Best Regards,
    Jack
    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.

  • Can't see table data from Visual Studio Express 2013 for Web

    Hello!
    I have a problem and I can't see neither the table data nor the table definition for my database inside Visual Studio Express 2013 for Web, Server Explorer. When I right click it just says refresh, copy or properies.
    Does anyone know what's wrong?
    Thanks a lot!

    Hi J1m,
    According to your description, I make a test on my computer and I am able to reproduce your issue. Firstly, I install the Visual Studio 2013 express for web successfully, create a project and connect to SQL Server database. Then I right click one table,
    and I can see all the options including ‘Show Table Data ’, ‘Open Table Definition ’, ‘Copy’, ‘Refresh’, and ‘Properties’. Next, I uninstall the SQL Server data tools, and restart the Visual Studio, right click on table, and only find  the three options
    ‘Copy’, ‘Refresh’, ‘Properties’ as the following screenshot, which is the same scenario with yours.
    Based on my test, the issue could be due to the missing or corrupt SQL Server Data Tools. To work around the issue, you should install the latest SQL Server data tools for Visual Studio 2013. You could  download the
    ISO file for SQL Server data tools and extract the ISO files to your hard drive following the methods in this
    article, and install the data tools. Please restart your computer after you complete the installation.
    Regards,
    Michelle Li

  • Visual Studio Express will not install

    Hi, I am trying to install Visual Studio Express for Windows and as far as I can tell my system meets all the criteria however when I try to install it says I need to update windows to a newer version. 
    I am running Windows 7 XP 64bit Service Pack 1 and IE 11
    The end of the install log gives the below, what am I missing? :
    [118C:0BF8][2015-04-08T13:43:21]i101: Detected package: WinACK_x86_x86_en, state: Absent, cached: None
    [118C:0BF8][2015-04-08T13:43:21]i101: Detected package: winexpress_finalizer, state: Absent, cached: None
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition '(VersionNT = v6.3) AND (WindowsBuildNumber < 9600)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'VersionNT < v6.3' evaluates to true.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition '(VersionNT = v6.3) AND (netfxfullredist_43_DetectKey < v4.5.31101)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'CompatibilityMode = 0' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'RebootPending = 1' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'NOT (IEsvcVersionExists) OR (IEsvcVersion < v10.0)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Stop Block: WinBlock : This version of Visual Studio requires a computer with a !$!http://go.microsoft.com/fwlink/?LinkID=427810&clcid=0x409,newer version of Windows!@!.
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Detect Completed
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Wait for View to be loaded
    [118C:2208][2015-04-08T13:43:21]i000: MUX:  Detect Completed, now create view
    [118C:0BF8][2015-04-08T13:43:22]i000: MUX:  View loaded
    [118C:0BF8][2015-04-08T13:43:22]i000: MUX:  Go to Blocker page.
    [118C:0BF8][2015-04-08T13:43:22]i199: Detect complete, result: 0x0

    Hello Mike,
    Can you clarify the OS version first? What is Windows 7 XP 64bit Service Pack 1? It is Win 7 or Win XP?
    Condition '(VersionNT = v6.3) AND (WindowsBuildNumber < 9600)' evaluates to false
    Condition 'VersionNT < v6.3' evaluates to true
    I checked here http://en.wikipedia.org/wiki/Windows_NT to see those NT versions and find that v6.3 means Win 8 version.
    So please notice that " Visual Studio Express for Windows " is for Store Apps and Phone Apps, they required Win 8 or higher version OS. Win 7 or Win XP does not meet the requirements for this kind of VS.
    If you just want to develop normal version, please choose to use Visual Studio 2013 Express for Windows Desktop.
    Best regards,
    Barry
    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.

Maybe you are looking for

  • Talent Search w/o TREX

    Hi everyone, we are on EHP5 and started implementing Talent Management functionality. When we came across to Talent Specialist part, we realised that TREX is mandatory to be able to do talent search. We are looking for a way to do be able to use Tale

  • Why do I keep getting network error while trying to transfer contacts?

    I just received my i4 and am trying to verify my phone number in VZ Contact Transfer.  I've tried ten times, and every time it gives me a Network Error.   The phone is activated.  Help!

  • ALE Urgent

    Hi All . TOO Urgent .... I have created a messagetype ZSDORDER with idoc type zsdord01 .One of my segment is Z1SORIFO .When ever idoc will posted at that time in filter setting(bd59), if EKORG field of above mentioned segment would be 'MX01'(Mexico).

  • I can't sync a movie onto my ipad because I can't click the button

    I downloaded it onto my phone but I can't seem to sync it onto my ipad because there is only half the button there and it is unclickable!

  • Install elements 10 without dvd-rom?

    I have a new hp ultrabook without a dvd-rom drive. I purchased photoshop elements 10, can I install it on-line? If not, how can I get it installed?