Software Development Network Logo
  • Windows Vista
  • Architecture
  • VS Team System
  • .NET Development
  • Visual Studio
  • Microsoft ISV
  • Visual C++
  • Windows Forms
  • Visual C#
  • Visual J#
  • Visual FoxPro
  • Visual Basic
  • Smart Device
  • VS Express Editions
  • SQL Server

Software Development Network >> Carl Mercier's Q&A profile

Carl Mercier

Member List

Peder
Dennisfa
Anurag G
GRTR
gdexter
Jordan Y
Rajesh Prabhu. R
emmie
Papuashu
bhavu
Xavier R. Javier
Vojta
rattatosk
hYam
Sweeps78
chen55347
Chekib
NickP
Vincent_D
Martin Kelley
Only Title

Carl Mercier's Q&A profile

  • Windows Forms Error Publishing my project to localhost

    hi folks i made simple windows application called WindowsApplication1 but when ever i try topublish the project i keep getting this error message: Error 1 Failed to connect to 'http://localhost/WindowsApplication1/' with the following error: Unable to create the Web 'http://localhost/WindowsApplication1/'. An error occurred accessing your Windows SharePoint Services site files. Authors - if authoring against a Web server, please contact the Webmaster for this server's Web site. WebMasters - please see the server's application event log for more details. 1 1 WindowsApplication1 please any help I'm having the same problem and ha ...Show All

  • Microsoft ISV Community Center Forums Send Outlook message via VBA Macro in Excel

    I have some macro code in an Excel workbook. It has been working fine for several years under various combinations of Excel 97, Excel 2000, Excel 2002(XP) and Excel 2003 along with Outlook 97, Outlook 2000, Outlook 2002(XP) and Outlook 2003. We have one new computer that has Office 2003 (SP2) that was recently setup and the macro generates the following error: Run-time error '-2147024770(8007007e)': Automation error The specified module could not be found. Here is the VBA code in the Excel Macro.  The error happens when it reaches the line that reads: Set theApp = CreateObject("Outlook.Application") .  I tried to ...Show All

  • Visual Basic Filter data from text

    I have an error log that is saved by some software as a text file. Currently my program allows you to open a text file and it shows the information in a text box. I want to sort through the text box for key words so I can filter out what I want for data, for example here is some data in the text file error log: Data on me this is just filler data; blah blah 21:06:14 Copying BOM from Part:123212 Part revision for sub assembly was not found. Request Cancelled Looking for revision of Part:123212 Error copying BOM . More filler data just to show example I want to find the Error copying BOM and get all the data ABOVE it until I see the words Cop ...Show All

  • Smart Device Development Custom WinCE 5.0 and VS 2005 Beta2. Connection question.

    So, I have a custom board and windows ce 5.0 built to our needs. I have active sync built into the image. Now, comes the problem. VS 2005 Beta2 asks for an tcp/ip (transport) and to have activesync (bootstrapper). Then I try to connect and get "Connection failed. The current version of ActiveSync is not supported. Install the latest version from www.microsoft.com.". Well, I got activesync 3.8. That is the latest I found. As a component for PB 5.0, where can I find the latest activesync component to include in my image If this matter, the red X after it failed was on the desktop side. Thanks RM. You ca ...Show All

  • Visual Studio Express Editions Flat File Database?

    Hey! Is it possible to save data to a flat file and then retrieve it again later just a simple flat file database... or maybe data.dat file what ever a dat file is lol ty all -mark You an save data where-ever you like. If you'd like a flat file, XML is probably the best way to go, for ease of searching, etc. The XML Document class will load and save XML documents for you, as well as exposing the DOM. ...Show All

  • SQL Server Setup failed - no package <sqlncli.msi>

    I tried to install a sql 2005 desktop engine. This fails with the error: An installaton package for the product Microsoft SQL Server Native Client cannot be found. Try the installation again using a valid copy of the installation package ‘sqlncli.msi’   I used a fresh, new download SQLEXPR.EXE. What shall I do   I have the solution. If someone is interested:   First I extracted the files in a separate directory: SQLEXPR.EXE" /x:c:\sqlexprtmp Then I searched and executed “sqlncli.msi” I clicked on “uninstall”. After this I rebooted the ...Show All

  • Visual Basic Pivot tables & custom reports in Visual Studio 2003

    Hi, I'm trying to save the layout of a pivot table in order to retrieve it later and restore its layout so that the users can save their own reports and then load them again. I'm working on VB.NET 2003 and the problem is when I try to assign the XMLData to the object. After writing the XMLData to the object the pivot table shows an error message that says "Cannot process the query:  - Cannot Initialize Microsoft SQL Server Analysis Services  - Property name was not recognized, 'EXTENDED PROPERTIES'" First thought it was because the XML I was trying to assign was invalid, but the same happens when I do something as stupid as: sXMLTa ...Show All

  • Visual Basic Unlock key systems, trial software timing, related issues...

    I'd like to try coding some of these things myself. Can anyone point me in the right direction - to tutorials or snippets or any books or resources about how to create some decent security routines for my software designs Thanks. perhaps the shareware starter kit would be of use Cathal ...Show All

  • Visual C++ Unmanaged / Managed Code Integration

    I know for alot of us developers it would be nice to have a forum for integration between legacy c++ code and new managed c#. Or vice-versa (calling managed code with legacy code)....... Good idea If you are looking for more information on C++/CLI, I put together a list of resources back in January at: http://dotnetjunkies.com/WebLog/jhaley/archive/2005/01/18/45686.aspx Unless you are looking at production code right now, I wouldn't suggest using the current version of the __mangaged extensions (but if you have to, you have to).  There is A LOT of new stuff in C++/CLI. The most current l ...Show All

  • Windows Forms AutoToolboxPopulate option question

    Hi, Is it possible to limit the AutoToolboxPopulate to some certain projects in a solution Or is it possible to exclude some projects in the solution from toolbox population Thank you in advance Unfortunately, no. It will not add items that are marked ToolboxItem(false). However, the feature is either completely on or completely off. Sorry ;( ...Show All

  • Visual Basic **New VB.NET Forums - Are You Looking in the Best Place?

    Hi everybody, I'm Paul Yuknewicz - I'm one of the Program Managers on the Visual Basic product team, and starting today, I'll be moderating these forums.  For more info about me, check out my blog .  We have some new forums for VB that should help you find categories of questions better:  Visual Basic General Questions and discussions about developing with Visual Basic 2005, that are not covered in the other VB forums. Visual Basic Language Questions and discussions regarding the VB language, compiler, VB framework/runtime – including things like generics, language keywords, My namespace, etc. Visual Ba ...Show All

  • Visual Basic How to save Files with a "SaveFileDialog"

    How can I do this Like you type a string in a textbox and you press a button called "Save", and then a "SaveFileDialog" pops-up, and you can choose where to save the file and what to call it. What is the code for actually writing strings into a .txt file Thanks Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim saveFileDialog As New SaveFileDialog() If saveFileDialog.ShowDialog = Windows.Forms.DialogResult.OK Then My .Computer.FileSystem.WriteAllText(saveFileDialog.FileName, "my test in the file" ...Show All

  • .NET Development Is there any way to center a MessageBox based on it's parent?

    Could anybody tell me whether it's true that we can't make a MessageBox in the center of its parent (instead of the screen) using pure managed code! It's really frustrating that I need to make some windows API calls in order to to do that. Well, you have to use API (MessageBox API) to display a MessageBox that is not in the center of the screen, I mean, I'm not aware of any pure managed way to do this. Hope this helps, -chris ...Show All

  • Visual Studio Team System Purchasing Load Agents/Controllers

    Hi, I am looking for getting team test load agents/controller software. I see that no evaluation copy can be downloaded. Is this correct The price for purchase seems to be around $5000+. Can some one confirm this Thanks, Praveen Hi Praveen, You are right, Team test load agent is not available via MSDN Subscription or MSDN Downloads. It is only available for retail. Pricing depends on several factors (for instance if it is personal use, for an organization, etc), and you can find this information right here: http://msdn.microsoft.com/vstudio/howtobuy/ Thanks, David Gorena Elizondo [M ...Show All

  • Visual C++ Welcome Screen

    Hi, i'm sort of new at programming in C++ so if you don't mind try not to get frustrated with me. I need to know how to make a welcome screen sort of thing where like when you boot the application it shows you a big picture and says at the bottom something like "loading preferences" and then switches really fast to like "loading images" you know that sort of thing. If you could help me out then I would greatly appreciate it. guykirs wrote: I have managed to create levels using a case statement to render the splash screen befor the game starts. I can add text and menu however I would like to add button ...Show All

©2008 Software Development Network