Marco Minerva's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Can someone help me get Started (Drag-andDrop)
I'm really new to all of this so i was hoping someone was willing to help me out. I watched a Video on www.gametrailers.com about the XNA software which lets you make games for the Xbox 360, which made me interested in getting started. Th problem is that i don't really know any Programming Langueges, but the clip i saw said that there was a Drag-and-Drop System which lets you make simple games. I was wondering how to get this Drag-and-Drop system If anyone can help me out that would be wonderful Do you mean this http://garagegames.com/products/torque/tgb/ ...Show All
SQL Server Bug in MS Management Studio for SQL-Server 2005 while creating a publication!
Hello, I found a bug in Management Studio, which can be reproduced with following steps: 1. Create a new publication with the 'New Publication Wizard' 2. Select a database which contains at least 2 tables. 3. Select 'transactional publicatioon' 4. Select at least 2 tables as articles 5. Set article properties for all table articles 6. Change 'Statement Delivery' to 'Insert statement', 'Update statement' and 'Delete statement' and save the article properties. 7. If you now check the properties for a single article you find that the 'Statement Delivery' is set to 'Do not replicate...'. If you generate this publication and create a subscritpion you will see, that actual no replication take place. It took me a while to find out why my replicat ...Show All
Visual Basic Show Pictures in rows (e.g. Emoticons)
Hello I have a number of small picutures and all of them has the same size. How can I show them in rows in VB2005 Look at this picture: http://www.onh1986.3000mb.com/vb.jpg And when I click one, I want to show it in a separate picture box. How can I do it Thanks Thanks "rkimble" it's working and it's a good idea. CumQuaT: I took the example and kept it. Thanks you too very much. ...Show All
Visual Studio IE 7 + applications
I have installed IE 7, my applications crossed, the same applications was worked on the IE 6. The error is "CLR debugging service" Can you please help me. Regards Balas Hi Balas, Could you please provide more details about your applications: 1. Do they contain client script code If so, what language and in what type of documents (.html, aspx, etc) 2. Do they contain ASP.NET code 3. Do they contain any other type of code and if yes, please describe. 4. What action causes the error message to appear and what is the full text of the error Thanks a lot, Monica Boris VS Debugger Team ...Show All
SQL Server Table FillSchema Method
Hi, Sorry if these is not the right forum for this: I’m using the data adapter method FillSchema works fine in MS Access but SQL Server Express Edition it doesn’t get the primary key of the table. For example if I try to use the Find method of the dataset I get this error “Table doesn't have a primary key” but in MS Access these do not happen. This is the code that I’m using : Dim sql As String = "SELECT admin.rents.id, admin.rents.transaction_id, admin.rents.item_id, admin.rents.description, admin.rents.due_date, admin.rents.return_date, " sql &= "admin.rents.amount_to_pay, admin.rents.paid_amount, admin.rents.tax, admin.rents.type, admin.rents.deposit_id " sql & ...Show All
Visual C# hide or visible=false do not work
hi to all; i have created a C# applicaiton Windows Forms app and i dont want it to show the Form itself.. to do this. i used in Form Load method this.Visible=false; it didnt work i used this.Hide(); again it didnt work.. then i used these codes in Initialize component method but unfortunately again didnt work.. how will i prevent my form to be seen.. thank you very much it worked but why did not hie or visible atributes ddi not work any idea or what are they for (hide method and Visible attribute what are these for ) ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Simple BreakOut Demo (Source included)
Well there it is, my first ever C# and XNA program I hope it'll help some of you. Download BreakOutDemo.zip v0.31 Thank you MS for that wonderful gift that is the XNA. It is really good to see games comming out of the wood work... but just a favor, can you please make the posts comments if you are not asking a question. Also if you do ask a question and get a correct answer please make the post as answered. Remember that all of the Questions and answers get added up and all count towards the stats for the forums. It would be nice to get the XNA Groups a high answer rate. ...Show All
SQL Server SQL Server 2005 Data Mining Add-Ins for Office 2007 Released (Updated)
The SQL Server 2005 Data Mining Add-Ins for Office 2007 package has been released to the web with SQL Server 2005 SP2 as a free download . The package is available in ten languages and includes the following three add-ins: Table Analysis Tools for Excel – Allows you to analyze your spreadsheet data in powerful ways with just a few mouse clicks, by employing SQL Server Data Mining behind the scenes. Data Mining Client for Excel – Enables you to go through the entire lifecycle of a data mining project, including preparing data, building, evaluating and managing mining models, and predicting results using either spreadsheet data or external data accessible through your Analysis Services database. Data Mining Templates for Vis ...Show All
Windows Forms RowLeave event happens before CellValueChanged
Hi, In my implementation of an unbound DataGridView I need to set a changed flag at the row level if data in that row has changed, I do that in the CellValueChanged event. Then, in the RowLeave event, if the flag has been set, I update the unbound data source with the value of the row's cells. It should work if the CellValueChanged would happen before RowLeave, but it's not the case. RowLeave happens before CellValueChanged, why Is there a workaround Thank you, Marco Here is what DataGridView FAQ says: Order of Validation Events The following identifies the order of validation, enter/leave and begin/end edit events. The EditMode is EditOnEnter. When moving from cell to cell ...Show All
Windows Forms Rescale Form
Hello, How I can rescale one form (change the size of the form and magnify/shrink the content inside). Especially if on the form are multiple PictureBox. Thank you Best regards luben, Have a look at the Anchor and Dock properties. The anchor property 'anchors' an edge of your control to the edge of the form, so it will always be the same distance between them. If you anchor one edge, the control will move with that edge. If you anchor opposing edges, it will stretch the control. The dock property makes the control take up the whole side that you dock it to, and if you docked it to the left or right, you can adjust the width, or top/bottom you can adjust the height. ...Show All
Visual C++ How to truncate the file using C++ no MFC
I want to truncate a file using c++. Tried moving the end of file but the data still present. Can someone please tell me how to truncate the file. See if you want to Change File content so you can use seekp and tellg to replace your File Content.if you are looking for something else .Please let us Know. Thanx . ...Show All
Visual Studio 2008 (Pre-release) problem in consuming WCF
Hi, I have WCF services host on IIS5.1 with Windows XP. It is developed in Visual Studio 2005. The Client project is windows application, which is in the same solution as the WCF services. When the method from the service is called in the client, I got the following exception: System.ServiceModel.FaultException`1 was unhandled HttpContext is not available. This class can only be used in the context of an ASP.NET request Could anyone give me any suggestion on what could be wrong with my code Thanks, Bing It sounds like your WCF service is trying to access HttpContext, but the service is not hosted in ASP compatibility mode. Does your server code use HttpContext Do you ha ...Show All
Visual C++ VS .Net 2005, how to disable intellisense...
Hi I am really frustrated with the performance of VS .Net 2005. This is because I always see at the bottom "updating intellisense..." and it uses 60% to 70% of CPU. How to disable this updating of intellisense... Please this is making Visual studio unusable. Thanks Chandra Try going to Tools menu -> Options ->Text Editor -> C# -> Intellisense and uncheck the option "Intellisense pre-selects most recently used members". Then click OK. Does this help It does not disable Intellisense, but it should turn off background upates to the recent list. If you are fcing more problems please mention what's your machine configuration, and how large a project size you are working upon. Regards, Saurabh Nan ...Show All
Visual Basic vb.net assemblies with VS 2005
Hello All, OK, here's the situation: I am in the process of building a shopping cart web application in .NET, using two separate platforms. Our development environment uses .NET Framework 2.0 and Internet Information Server 5.1 under Windows XP Professional with SP2, while our target (production) server is .NET Framework 2.0 and IIS 6.0, under Windows 2003 with SP1. The code consists of a couple of compiled vb.net classes and some asp.net files, all of which were built as projects in Visual Studio 2005 on the development platform. All of the class projects were setup with strong names through VS 2005, along with the required .snk keys. So far so good. I'm able to add the built assemblies to the Global Assembly C ...Show All
Software Development for Windows Vista Intel(R) 82801ER SATA RAID Controller
When I want setup Vista RC1 from DOS, I will need to install raid driver. When I put floppy into floppy-drive, setup begin copy driver-files to HDD, when I will seen "blue screen" with error. This driver was worked correctly in Vista Beta 2. How can I correct this problem. Hello, What is happening is a ‘name collision’ where the Intel(R) 82801ER name is the same as used by iastor.sys. When the collision occurs we sub in the Vista driver and in this case the machine would bugcheck with a 7E. The good news is this has been bugged and addressed in a later build. Thanks, Louis Shanks ...Show All
