GtGyal's Q&A profile
Smart Device Development Application info in Homescreen
Hi all, I have an simple windows mobile application (c#) for Windows 2005. the application contains certain data of the user. i would like to show some of these data in the Home Screen as well. how is it possible regards, rnv are you talking about a homescreen plugin or do you want to get information about some user of the device and display that in your application ...Show All
Game Technologies: DirectX, XNA, XACT, etc. .NET 2.0 application template
Hi! How to create an application template like the one presented here: http://msdn.microsoft.com/coding4fun/weekend/apptemplate/default.aspx , but for .NET 2.0 I'm new to the whole .NET thing and it's quite confusing for me. I tried to follow the steps in the tutorial mentioned above and just changed reference to Microsoft.DirectX (which should i use: "version 2.0.900.0 runtime 2.0" or "version 2.0.0.0 runtime 2.0.50727" ), but should i also us ...Show All
.NET Development Game development with .Net
Hello, I am looking for samples, articles, guidelines... to write .Net games with .Net. I don't want to use DirectX or, if with DirectX, not using 3D. The category of game is Legend of Zelda, Mario Bros... the ultimate goal being to make a game both for WinXP and WinMobile. Also, I'd like to find help on a 3d-iso game like age of empire or StrongHold. Thanks for any help, Claude There's a good start !! The URL ...Show All
SQL Server Cannot find folder "\Maintenance Plans".
I've been looking for treads with a possible similar problem but thus far nothing. I recently upgraded SQL 2000 (STD ed.) instance to SQL 2005 (STD ed.). This includes the db's. All their compatibility levels were changed to level 90 (SQL 2005). Everything seems to be working fine but when trying to migrate a legacy maintenance plan I keep getting the message, "Cannot find folder "\Maintenance Plans"." even though ...Show All
Windows Forms Toolbar above Maximized MDI Children
I am working on a image manipulation program, which uses MDI windows for each document. I also have a toolbar (also an MDI window) which I want to be on top of the document windows. The problem is, when I maximize a document, all of the&nb ...Show All
.NET Development A question on interface
A value type can also support interface, e.g. Int32 : IComparable. When I declare a method that take a interface as parameters (e.g. MyMethod(IComparable p) ) and pass a Int32 as its input, since the interface is reference type, will the Int32 parameter be boxed That is : void MyMethod(IComparable p) { } ...... int a = 3; MyMethod(a); // Is "a" boxed When I declare a generic method : void MyMethod(T t) wh ...Show All
Visual C# XML ERRO
I get a xml error when i run this code. I am trying to make a xml file. However I keep getting a run time error. private void SetupXMLfile() { int rowcount = 0; int found; int cell = 1; ArrayList elementarray = new ArrayList (); //mydoc.Load(filename); XmlTextWriter xw = new XmlTextWriter (filename, System.Text. Encoding .UTF8); xw.WriteStartDocument(); xw.WriteStartElement(RootNodestrin ...Show All
SQL Server Query:Source from multiple tables to a Fact table
Greetings, Iam new to SQLl2005. Iam using DTS to transfer data from my source to the warehouse. I have a couple of tables in my source whein I have to join these to tables fields and insert the same in teh warehouse fact table. I have used a Join query in my Oledb source component, What other component needs to be used to insert the data into the fact table. I also need to extract same data with aggregation and insert the same into an another F ...Show All
Visual C# Search DataSet
I've got an app that populates textboxes based on a DataSet, like so: txtModel.Text = ds.Tables[ "dtModels" ].Rows[iCurrentRow][ "Model" ].ToString(); txtDirectory.Text = ds.Tables[ "dtModels" ].Rows[iCurrentRow][ "Directory" ].ToString(); txtName.Text = ds.Tables[ "dtModels" ].Rows[iCurrentRow][ "Name" ].ToString(); etc.... And I can navigate through this DataSet by changing the row index, no big deal. But I'd like to have a  ...Show All
Windows Forms Web DataGrid Selection
I've been putting together a project where I need the user to click a ButtonColumn before being able to view or navigate from several LinkButtonColumns. I seem no not be able to get the SelectedIndexChanged event to fire, nor the ItemCommand ...Show All
.NET Development filtering rows in a dataset
Hi, I am trying to filter rows in a dataset, using a dataview, and an input textbox for selection, anyone have any ideas that may be able to help here is a sample of the base code; Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox Friend WithEvents OleDbDataAdapter1 As System.Data.OleDb.OleDbDataAdapter Friend WithEvents OleDbConnection1 As System.Data.OleDb.OleDbConnection Friend WithEvents Loadbtn As System.Windows.Forms. ...Show All
Visual Basic 2005 .Net Nightmare
As a visB programmer who has been happily coding very successful applications for many years, I have been shocked at the verbose incomprehensibility of the .net framework. Where is the wonderful Basic language that has served so well for so long Is there a way to disable all the garbage in VisB 2005 in order to just write simple single thread applications in the Visual Basic language I have been unable to get even the simplest microsoft SDK exa ...Show All
Visual C++ mem.h
fatal error C1083: Cannot open include file: 'mem.h': No such file or directory. Can anyone help me with this error or tell me which header file I could use in place for this one Sniper167 wrote: fatal error C1083: Cannot open include file: 'mem.h': No such file or directory. Can anyone help me with this error or tell me which header file I could use in place for this one Are you trying to compile some Borlan ...Show All
Smart Device Development Cleaning up Async Web Threads
Hello, I have a mobile application that asynchronously sends information over Web Services, when I close the application, if there was a web thread open, it throws an InvalidOperationException Exception that cannot be caught. It actually throws the error on a Catch ex as Exception line. I've tried aborting all threads that I have handles on by storing the async result from the begin method in an array and iterating through the array cal ...Show All
Visual C++ Deploying a VS 2005 C++ application
I have written an ISAPI wildcard extension that watches for specific content comming through the server. I wrote it using VC.NET 2005 and I am using MFC and Managed Code. Because of the managed code, I have to link the MFC as a shared libarary and this is where I get into trouble. I installed the redistributables and .NET 2.0 on the server and installed our files, however when we attempt to access the server we get the error "This applic ...Show All
