JulioCor's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Thoughts about PC Gaming and its current problems
Hello to all, I’ve been thinking about windows game development and why with the flexibility and power that a PC offers is inferior to the consoles (sure, pc gaming is not dead, but is the business is dying when you compare it with the console business) and I came to the following problemas that affects pc gaming. 1. Performance. Let’s face it, in order to play the lastest games in a nice way (nice graphics, good f ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Targeting older machines
Hi there. I guess part of this is more of an opinion question. I want to target older machines that may not have up-to-date graphics cards. Right now I am using a game engine that gives the developer the option of using DX8, DX9, or its own software driver. To compile the engine, I naturally need the DirectX SDK. Problem being that the latest realeases don't have DX8 support. So the question becomes: Is DX9 a 'safe' way to go f ...Show All
.NET Development Usage of ToString and ToInt32
We can use ToString this way: int i = 5; Response.Write(i.ToString()); But why can we only use ToInt32 the other way: string s = "5"; Response.Write(System.Convert.ToInt32(s)); Why can't we just simply use "s.ToInt32()" I agree that it would be nice, unfortunately with it though we face the slippery slope theory that by adding ToInt32(), arguments can then be made for ToInt16(), ToInt64() and ToJustAboutAny ...Show All
.NET Development Using Predicate with parameter
Heya, how do I go about sending a parameter to the Find method of List<T> Consider: class Person { string name; int age; } List<Person> list = new List<Person>(); list.Add( new Person("Chris", "30")); list.Add( new Person("Jimmy", "25")); Person chris = list.Find("Chris"); Now, I know I can't use Find("Chris"), but I have to use a Predicate. How do I send the string "Chris" to my Predicate Any help ...Show All
Visual Basic XML application file doesn't excecute
Hi All, I have published my application to a web site and to test it, I run the publish.htm file from the host site. The publish.htm files seem to run perfectly but when it call the application manifest, the source code of the xml file is displayed and it doesn't excecute. Any suggestions on what I might be doing wrong Thanks Dick R. ...Show All
Visual Studio Express Editions A problem with CreateWindow
#include <windows.h> LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { static TCHAR szAppName[] = TEXT ( "HelloWin" ) ; HWND hwnd ; MSG msg ; WNDCLASS wndclass ; wndclass.style = CS_HREDRAW | CS_VREDRAW ; wndclass.lpfnWndProc = WndProc ; wndclass.cbClsExtra = 0 ; wndclass.cbWndExtra = 0 ; wndclass.hInstance = hInst ...Show All
Visual C++ Can you use the Base Class Library from unmanaged code?
Can you use the .NET Framework Base Class Library from unmanaged C++ I would like to know because then I can do Windows Forms in asm to have a laugh about. It will be very ugly, like COM in asm (urgh), but I don't care: it is just a bit of fun for me. Thanks Can't you use regasm.exe and tlbexp.exe to make .NET Assemblies visible to COM If so, can I use this on System.Windows.Forms.dll ...Show All
SQL Server SQL Server 2005 Management Studio can't be found
Sorry if someone already covered this, but I can't find anything about it. I just installed (3 hours ago actually) SQL2005 Standard Edition (from the Launch event) on my machine, and i don't seem to have a shortcut to the SQL Server 2005 Management Studio anywhere. I looked for a likely executable, but couldn't find it anywhere. This wouldn't bother me as much if I could use Enterprise Manager from 2K, but SQL2005 will not allow it t ...Show All
SQL Server Seperate SQL 2K Publisher, SQL2K Distributor, SQL2K Subscriber
Hi, We are about to alter our replication architecture from SQL 2K publisher/SQL 2K5 distributor/subscriber to SQL 2K publisher, seperate SQL 2K distributor and SQL 2K5 subscriber. The subscriptions will be pulled from the distributor and pushed to the subscriber. Basically, all the work will be done by the distributor (in the hope of improving performance). Has anyone had any experience of a similar arc ...Show All
Windows Forms declare datatable, dataset and dataadapter as public or provate?
I saw a sample in which datatable, dataset and dataadapter were declared as public variables. Is it good practice Public or pravate Encapsulation and abstraction are extremely important in OOP design. Good OOP design is a often thought&nb ...Show All
Visual Studio How do I remove the "main report" button in Viewer
I am creating a report using the Crystal Reports that comes with VS 2005. I have a report that I shwo in the viewer. Under the viewers toolbar there is what looks like a button with the text "main report". How can I remove this button I can't find any properties. Thanks Simmy Hi Simmy7, What you are seeing is a TabControl for the Main Report display. The viewer allows you to open several tabs a ...Show All
.NET Development SQL server 2005 data base with visual studio 2005.
Hi all, I am just installing Microsoft Visual Studio.NET 2005 with SQL serevr. I had a program written in VB.NET with DataBase, when i tried to run it, an error message appeared indicate : [DBNETLIB]ConnectionOpen (Connect()).]SQL Server does not exist or access denied. SQL Server DOES NOT exist ! How come! one thing more, i want to attach a file in SQL server 2005 by the attachement action available there, where can i find it What about ...Show All
Visual C++ .NET Framework - why does my program require it?
Hi, I've got myself a little demo program created. It uses the Irrlicht 3D engine and the RakNet network library to provide a drawing window - basically anything drawn in the window on one of the clients gets passed across, via the server, to every other client. I'm quite happy with the way it works, functionally it's just fine. But to run it requires the .NET Framework 2.0 Beta. I don't understand why, because it's not using any .NET code what ...Show All
Visual Basic scripting control object problems
Hi, I'm developing with VB .NET and I'm using the scripting control object in order to run scripts from an application. The scripts are running fine, but I get all the time a MsgBox indicating that the script I am executing is taking longer that expected to run and gives me options to End or Continue, attached below is the screen capture of the MsgBox. In addition, after a certain time that the script is running, I get a run tim ...Show All
Windows Forms popup just dont stop. (known trigger.)
like i said, I have scanned with 4 programs. Including adaware and microsoft antispyware. also I though that it said forum not form. Could you just help me with this one problem so I may be on my way also there is no help section on these forums for such problems. at least none that i can see. To get help for your problem, visit the Microsoft Newsgroups . Please acknowledge Please read before posting . ...Show All
