tomazek's Q&A profile
Visual Studio Express Editions Publish Settings and Questions
Hello! How do I change the name of the program group when I install an instance of a program that I published Also, I honestly can't find where the setup install my published program after I install it. I see it in add / remove programs but can't find a path. Thanks, Brian Hi Brian, The Publisher name property determines the name of the program group; by default it uses the computer's Registered Organiz ...Show All
.NET Development Typed Dataset - How To Generate
VS 2003 was simple. Create xml data, right click generate schema, right click and generated typed dataset. How do I do this in 2005 Dave pugs wrote: I'm also having this problem in VS 05. It was or used to be simple to generate a dataset from an *.xsd file. I'm finding this a real problem in 05. I've imported an xsd file and would like to generate a typed dataset from it but it doesn't work ...Show All
Visual Studio Team System Bug Reporting
Maybe I'm completely missing something, but does anyone know how to see if a bug has been reported and to submit new bugs for vsts As FYI, I believe I've had 2 so far today. Nothing major, but definitely irritating 1 - Code Analysis: I setup code analysis on Team Project before attaching any code to it. I then attached the solution and tried to build. I was told in the checkin policy warnings to enable Code ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Having trouble Rendering Meshes created "by hand".
I was hoping someone could give the following code a quick look. I was looking at this all night and cannot see a problem. I build a Mesh using the following code: int numberVerts = 4; short [] indices = { 0,1,2, // Front Face 1,3,2 // Front Face }; mesh = new Mesh (numberVerts * 3, 4, MeshFlags .Managed, CustomVertex . PositionNormal .Format, Device); using ( VertexBuffer vb = mesh.VertexBuffer) { G ...Show All
Windows Forms Insert New Row Into DataTable Problem. Please Help !!!!
Hi All, While the existing datatable is looping, I can insert new row into datatable, but I can't insert it between datarows. All new rows will inserted into buttom row. Here is my code. Please advise! if ( myTable.Rows.Count > 0 )&nbs ...Show All
Visual C++ Browsing in global objects
I need to create an application that will simulate the operation of a larger, native application for the purpose of creating a managed application that will communicate with it. Anyway, I have started a Windows Forms project and I need to add an unmanaged class to it. I could not instantiate an unmanaged class within a managed class (the compiler gave me an error) so I created a global instance. So far the problem with that is that when debuggi ...Show All
Visual C# MS Access DB for user logon details
Hello everyone, I am having a bit of a problem connecting to a MS Database in C#2005. I have written my app befor as a test bed for the whole programme but I used a simple XML file to strore the username and password details. Now that the application is near compleation I would like to use a MS Access DB for the same purpose. The problem I have is I can connect to the DB in solution explorer and I can creat the DataSet but where do I go ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Transparent textures?
If i have a simple polygon with a transparent PNG as texture, how do i make other polygons behind the transparent polygon visible through the first one. Right now all transparancy on the png get the same color as the one i specify in device.Clear(...); What you usually do is render the solid objects first. Then you render the less opaque objects. What you will also need to do is set some render states ...Show All
.NET Development How are interpreted . and , in numbers in XML and in .NET ?
hello, i would like to know if this is "XP Regional Settings" dependent thank you Normally numeric data is stored in a region-independent manner in XML. The .NET frameworks provide an XmlConvert class that does the string to/from data conversions for you. ...Show All
SQL Server Insert Trigger
I am facing problem in creating a insert trigger for the following scenario. i have transactions, control tables whenever i insert a record in transactions it should get value from the control table, increment that value in control table and update the same value as transaction_id for new transaction in transaction table. control table has these fields (control_desc, control_value) can some one help ...Show All
SQL Server Broker:Corrupted message
Hello, Has anyone seen this in profiler I have two brokers on different servers with one of them being the initiator. All messages end up sitting in the initiator's transmission queue. Profiler on the target broker's machine displays this for every attempt to send by the initiator: A corrupt message has been received. The End of Conversation and Error flags may not be set in the first sequenced message. This occorred in the message with Co ...Show All
Visual Studio Team System TFS beta 3 installation
So where is TFSQL2005AnswerFile.ini referred to in the installation guide And is /inifile: actually supported for unattended install of TFS Morning Matthew, I'm not at the office yet so I can't 100% confirm ... but the SQL answer file should be in the root directory of the CD (or image). If you can't find it, post again and I'll look it up. As for unattended install of TFS - no, this is not supported. ...Show All
Visual C# DirectX app crashing
I wrote a video jukebox program in C# last year. I initially used the AudioVideoPlayback namespace, but it's really buggy, so I used the WMP control instead. However, we used DX to read ID3 tags in the manager program. Now, a year later, the client has changed the contact person, and every machine he tries to install on gives him this error : The type initializer for "Microsoft.DirectX.DirentInput.Manager" threw an excep ...Show All
.NET Development 1.1 assembly referenced in a 2.0 project
Can an assembly written in .Net 1.1 be referenced in a 2.0 web project I want to reuse a ton of code (c#) already written in 1.1 for a new web project where I'd like to use VS05. ...Show All
.NET Development Serialization of array of objects, containing array of another objects....
Hi all, This is my first post here , hope you know answer to this. I have a situation where webservice is returning array of object A which contains array of object B which internally contains array of object C. class A { [XmlElement] // this was added on later on and works fine B [ ] B_array } class B { //[XmlElement] // here does not work as in Class A above C[ ] C_array } class C { ...Show All
