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

Software Development Network >> bmssoftware1's Q&A profile

bmssoftware1

Member List

siewnauh
Gobra
makis2
ANS-Denver
Samuel Zhang
Smitha_Expesite
Syed Mahmood Ali
Erkki
DotDidIt
chriso
timbador2
EDstyler
toddwick
Ross Watson
Jörg Schwalenberg
ATAMAN
Stanley35
KindSword
ChitownDotNet
hackbabu
Only Title

bmssoftware1's Q&A profile

  • .NET Development Could you write a XSD file for the requirements? thanks!

    Could you write a XSD file for the requirements thanks! 1. The Folder elements and the Bookmarks element can occur with free order 2. The Folder elements can occur 0 or unbounded times 3. The Bookmark elements can occur 0 or unbounded times I have made the following code Part A-1 and Part A-2, they work well, the only problem is that the Folder elements must be at front of the Bookmark elements. So I have to write the code Part B-1 and Part B-2, but I get the following error: .Net SqlClient Data Provider: Msg 6965, Level 16, State 1, Line 3 XML Validation: Invalid content. Expected element(s):http://www.hellocw.com/onlinebookmark:Folder ...Show All

  • SQL Server Running a batch command using scheduler

    Hi, I have a batch file that runs an isql script. The sql accepts command line arguments as parameters. I want to invoke this batch file using windows scheduler. How do I pass parameters to my sql Somebody please help. Thanks. I am not sure about the batch file idea, but SQL server has a job scheduler built in called sql agent. You would be much better using this to call a stored procedure and pass in the arguments. To get you started, try this: http://msdn2.microsoft.com/en-us/library(d=robot)/ms189237.aspx Otherwise, why not replace your batch file with a .NET console application that takes command ...Show All

  • Visual C++ Why isn't this call working properly?

    I'm building a project for myself really; however, this problem is sticking me in the side. Can anyone tell me why this particular problem isn't working #include "pl_en_stats.h" // in *.cpp file for icPlayerInformation_Data struct usage. // in *.h file for Class definition. class LoadGameData { private: char PlayerInformation; icPlayerInformation_Data* pl_statistics; public: LoadGameData(); bool load_SaveData_Open(); void load_SaveData_Variables( icPlayerInformation_Data &pl_Statistics ); bool load_SaveData_Close(); ~LoadGameData(); }; ==PathRemoved==(24) : error C2143: syntax error : missing ';' befor ...Show All

  • Visual C++ C2871 error

    I am getting back to C++ trying to compile my old projects on VS2005 final release platform in WIn2K. In one of them (Winsock stuff) I am getting C2871 error that the namespace System does not exist. I checked, the reference to system.dll v2.0.50727 is included in the project. It is visible plainly in the Tools-->Properties-->References window. No syntactic errors up to the statement in question which is almost on the very top. It is frustrating to be getting errors that seem to be so basic. Naturally all other namespaces: System::Web , etc are also rejected. What am I missing Thanks. Some of the classes in the System n ...Show All

  • Visual Studio show gridlines

    Is there any way I can make my crystal reports show gridlines for easy reading And also to make double spacing Preferably these should be done programatically Thanx. Is this for just viewing or for printing also If it is for printing also, just expand your details section. Then create a details section below that one and "draw" a line in it. When you report is printed, you will have your details and then a line to separate each record from the next. ...Show All

  • Visual Studio SourceSafe Web Service Configuration

    A collegue of mine has just setup a SourceSafe 2005 database and configured it for internet web service access. I have Team Suite installed including SourceSafe 2005, but I am unable to find an option anywhere which would allow me to connect to it. I can connect over a local LAN or over the net via file sharing, but I can't find the web service protocol. I was informed this feature was in Beta 1. Anyone know what happened to it I thought Beta 2 was feature complete since the Go Live license is available.... Now i managed to get it to work.  I had enabled the internet access while the proj ...Show All

  • Windows Forms The new .NET 2.0 ConfigurationManager and Associated Classes

    Hi folks, I've recently been confronted with the necessity of using the new .NET 2.0 ConfigurationManager and it's associated classes: ConfigurationElement, ConfigurationSection and ConfigurationElementCollection. What an absolutely horrid exercise in frustration! The documentation is truly awful; none of it mentions what methods need to be overridden/implemented in order to customize any of the above, and I can find no documentation at all in the MSDN Library concerning the ConfigurationAttributes used in working with these classes declaratively. Add to this that every single example I've found online all show manipulation of element pro ...Show All

  • Visual Studio Tools for Office “This XML element cannot be applied here” exception thrown once, but only once

    Hi,   Consider a Word Template project, with the template containing a few lines of text and an XML tag around the whole document. During document startup you add a button in the Actions Pane and you listen to the Click event.   private void ThisDocument_Startup( object sender, System. EventArgs e) {     UserControl1 userControl = new UserControl1 ();     userControl.button1.Click += new EventHandler (button1_Click);       this .ActionsPane.Controls.Add(userControl); }   In the event handler for the Click event you add an ...Show All

  • Visual Studio Express Editions 64-Bit OpenGL Application development.

    I'm currently working on compiling some sample code that uses OpenGL. my setup: AMD Athlon 64 Processor gl.h glu.h glut.h Microsoft Platform SDK Visual C++ 2005 Express Edition Whenever I try to build, I end up with this error: .\Debug\i.obj : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64' I get the basic idea of the conflict of architectures, but I was wondering if there was a work around Since the Athlon 64 chips run normal 32-bit applications as normal, is there a way to just compile it as a 32-bit Application Thanks in advance for any advice or solutions. I have ...Show All

  • Windows Forms CheckedListBox vs Listview

    Anyone here who knows the main difference between using a CheckedListBox control vs a Listview with CheckBoxes property set to TRUE   Thanks... ...Show All

  • Visual Studio Express Editions How to add Visual Foxpro Database into Visual Basic Express 2005

    I have just install Visual Basic Express 2005. Only database from MS Access and MS SQL can be link to this VB. Can any one tell me how to link to Visual Foxpro 6 database Thank you. The data tools for the Express editions do not support Visual FoxPro. Only Access and SQL Server are supported. However, it is still possible to connect to a Visual FoxPro database using ADO.NET code. ...Show All

  • Visual C# Instanciate class from independent assembly

    Hi, I'm trying to do a somehow dynamic application. It's like a calculator of functions. A function has parameters (in an XML file) and a class that loads them and does some tricks. So the scenario is: the user opens an xml file and the app instanciates the class it refers to. Now, this works just fine if the class is in my original assembly (by Type.GetType("name of the class in the XML"). But, what if the user wants to add another class in the future I don't want him to mess with my app. I want him to refer to my dll, create the class he want (by extending a common interface for all the functions, just defined in my dll), compile his ...Show All

  • Visual Studio VS.NET modifying my custom .csproj changes

    Hi, As part of my build process, I am copying generated classed into my DataAccess project, then trying to build DataAccess.csproj which should include the newly generated classes. I modified the <ItemGroup> to include all .cs files in the directory as follows: <ItemGroup> <Compile Include=".\**\*.cs" /> </ItemGroup> It seems that Visual Studio overrides this change when I reopen the project. It lists a Compile node for each file in the project. Is there a better way to modify DataAccess.csproj so that all .cs files in the project's directory will be build Thanks, Gavin One of the a ...Show All

  • Visual Studio Express Editions TextFile online

    is there any better and faster way to get the content of an "Online-Textfile" then: You will have to consider what is actually taking time. There is some thing you are not able to control in this case. The time it takes to establish a connection to the server The time it takes to request the file from the server The time it takes to transfer the contents of the file This is probably what takes 20 seconds and you should be able to measure it by taking the time it takes to step from the DL.DownloadFile() line to the next. If it is about 20 seconds than that is where your bottleneck is. If this is the case your application can most li ...Show All

  • Visual C# Error when adding Constant

    Hi I am trying to add a constant to my class to store the connection string once retrieved from web.config I am trying to do it via const string strConn = ConfigurationManager.ConnectionStrings["testConnection"].ConnectionString; however this keeps throwing the following error - Error 23 'mpyapftdb.DAL.DAL.strConn' is of type 'string.' A const of reference type other than string can only be initialized with null c:\inetpub\wwwroot\mpyapftdb.FireTestDatabase\App_Code\mpyapftdb.DAL.cs 20 32 http://localhost/mpyapftdb.FireTestDatabase/ Can anyone help me with this please - I don't understand why this code is not wo ...Show All

©2008 Software Development Network