Software Development Network Logo
  • Smart Devicet
  • VS Team System
  • Game Technologies
  • Windows Vista
  • IE Development
  • Visual C#
  • Visual FoxPro
  • Audio and Video
  • SQL Server
  • .NET Development
  • Visual Studio
  • Visual Basic
  • SharePoint Products
  • Visual C++
  • Windows Forms

Software Development Network >> XNA Rockstar's Q&A profile

XNA Rockstar

Member List

City of Yellowknife
Auris
Randy Galliano
djbjmb
Lee Gillie
feby
hawash
Blast
Suganya Mahadevan
Elad_23
Ben Santiago
hazz
Taylor Meek
Daroedawg
BlackPepper
Thiru_
Joel Hensley
RussP
lkshikoh
jdn
Only Title

XNA Rockstar's Q&A profile

  • Smart Device Development System.Windows.Forms and MissingMethodException

    Hi, I hope I have posted this in the correct forum and I haven't been able to find a previous thread on the subject. My problem is my mobile device, that i recently upgraded to Compact Framework 2.0 (2.0.6103.00 exactly). When I try to run a small windows application on it (imagine a single form with a hello world textbox) I get a Missing Method Exception, referring to that Systems.Windows.Forms coudn't be found. The application runs perfectly on my desktop, so does console applications on the mobile device. So my question is - is it impossible to run windows applications on my mobile device If it is possible - how can I install/connect/upgrade the System.Windows.Forms class into the Framework Yes, it is impossible to run ...Show All

  • Visual Studio 2008 (Pre-release) Hosting at remote machine

    Hi, I'm using WCF June CTP. I successfully hosted WCF service (basicHttpBinding) in my local machine. Then i tried to host it in different machine, just changed my hosting url from http://localhost:7000/SimpleService to http://machine2:7010/SimpleService .Now i'm able to host the service.(means service is running without any error). But when i try to create proxy by using svcutil.exe, it says could not able to find the service. could anybody tell me, how to check it whether the service is successfully hosted at machine2 If so why svcutil.exe could not able to identify is there any other way to create proxy (without svcutil.exe) Rgs Vasu Vasu, let's first check the very basics: Can you ping your ...Show All

  • SQL Server Which method to use for synchronization?

    I have three options in my mind to synchronize my data of sql server compact edition with sql server 2000/sql server 2005. 1)Merge Replication 2)Remote Data Access 3)Web Service All the data would be residing on Sql server 2000/2005 and user will get their data after being authenticated and will change the data and add new data and then again will synchronize with server with new changes. Please suggest me solution, my opinion is going towards Web service. Thanks SOA is a nice ideal but the amount of pain involved in "rolling your own" nearly always outweighs the benefits of having total control. IMHO you are much better off using a predefined sync technology (such as rda, merg ...Show All

  • Visual Studio Team System Can't install KB919156

    Error: Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU -- The application pool identity required by Team Foundation Server (TFSWSS) for the content virtual server is not using the Team Foundation Server service account. To proceed, you must exit setup, set the application pool identity (TFSWSS) to use the Team Foundation Server service account, and then run setup again. 1. In my case the TFSWSS-pool is running as: SE\TfsService 2. SE\TfsService is a member of the "Service Accounts" group in TFS 3. SE\TfsService is local admin om the server 4. The TFS-installation is working fine 5. When the server was installed a while ago the domain was FYLKE ( now changed to SE) -> can that have anyth ...Show All

  • Smart Device Development Check Network Connectivity and Internet Availability

    Hi Experts, I want my application for smart device to check for network connectivity (i.e., whether within range) and internet availability. The following links serve part of my requirement: 1. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=67152&SiteID=1 2. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=693339&SiteID=1 But still I am not able to find out if the device is running in flight mode . If I am not mistaken, then I think Internet and Network is not available in flight mode. Link #1 is a slower procedure to find internet availability. Is there a faster way to do it Regards, Suman Hi Biju / Suman, I have a Windows mobile application and not web based. So how should I be checking the network co ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Image Ghosting & ContentManager questions- BETA 2 issue...

    I have an issue with the BETA 2. I am migrating my Slime Volleyball code (see my site: http://www.codeplex.com/Wiki/View.aspx ProjectName=SlimeVolleyXNA ) over to the BETA 2 framework.   I seem to have an issue with the drawing code. In the old version I had a Slime class that handled a Slime. It drew itself using a Spritebatch in that class (this meant >1 SpriteBatches). I used to have the Slime load it's texture file in the Slime constructor. Now we have to used the ContentManager. This is a little confusing to me. Should I have a ContentManager for each Sprite (Slime and other) or should I pass the default (in Game1.cs) ContentManager to each new Sprite. I have tried this approach but I have a slight image ghostin ...Show All

  • Visual C++ how to build a Windows XP application???

    I created a new Windows Application and am ready to compile and build so I can run on my XP PC. What are the instructions for this I need to know how to create the "install" and "uninstall". Thank you in advance. WCIS - Michelle WCIS-Michelle wrote: I followed these steps and I keep getting an error when I choose OK, "The Parameter is incorrect". Any suggestions To create a deployment project On the File menu, point to Add , and then click New Project . In the Add New Project dialog box, in the Project Types pane, open the Other Project Types node, click Setup and Deployment Projects , then click Setup Project in the Templates pane. In the Na ...Show All

  • Visual FoxPro Dbf Autoincrement with ADO

    Hello everybody, I created a table with an autoincrement field( CREATE TABLE `Synch_LogFile` ( `ID` I Autoinc NOT NULL, `TableName` C (100) NOT NULL, ...) ) when I try To open it by ADO with VB (Select * From Synch_LogFile) I get this error message: [Microsoft][ODBC Visual FoxPro Driver]Not a table. What's I'm doing wrong Thanks, Dim cn As New ADODB.Connection cn.Open "Provider=VFPOLEDB.1;Data Source=C:\Programmi\Microsoft Visual FoxPro OLE DB Provider\Samples\Northwind\northwind.dbc;Password="""";Collating Sequence=MACHINE" Dim rs As New ADODB.Recordset rs.Open "Select * from Categories", cn, adOpenForwardOnly, adLockOptimistic rs.AddNew and I got the error: Runtime error 325 ...Show All

  • Visual C# Problem with Loading Assemblies from Add in

    Hi all, I'm doing an add in for Excel. I want to load dll files using Assembly.LoadFrom(string filePath). However there is the exception: Could not load file or assembly 'DataAccess, Version=1.0.2468.3302, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed to grant permission to execute. (Exception from HRESULT: 0x80131418) I tried loading same dll file still using LoadForm but in a test console program, it could load. So I guess the problem is about some thing with Excel that prevents from loading assemblies from an Excel Add in I don't know what it is. I run the .NET configuration snapin to evaluate permissions to the dll file, it says "Unrestricted" in all 3 levels. Any idea Thanks in advance ...Show All

  • Visual Studio Team System Share a file to a folder?

    Hi, Is it possible in TFS to share a file between folders. For example I have an xml file that gets managed in one location but I also need it to exist in one of two other physical folders. I tried in VS to add existing item, select the file and click "Add as link" but it does not get added. Any ideas Thanks Donal Hi, I too needed sharing, but gave up on TFS and found the solution in VS itself - just open the project propeties of the project where the xml files need to exist and in the pre-build event write some lines that copy the xml file from it's managed location. This way, before the solution is compiled, the xml will be copied to each of the needed locations, so that ...Show All

  • Visual Basic help the beginner

    I am a beginner; I just solved one puzzle and want to do it on VB using a form. I created a form which have 2 textbox, then a button then another textbox and one 1 picbox at the top. I want the user to put number 1 or 2 or 3 on the first two textbox and when the user clicks the button my program should display a message on the 3 rd textbox and at the same time displays the related picture on the picbox. I did all the combinations that the user can enter on those two textbox and the related message that should display on the 3 textbox using the ‘if than else’. How do I do this on my form Any suggestion is appreciated To do this on your form, you can add an event handler using the Windows Forms ...Show All

  • Visual Studio Express Editions error trying program on other pc

    Hi I've got a program. It has 1 source file (.cpp) and 1 header file(.h). When I compile on my local machine the program works just fine, but when I try it on another pc I get the error that somethings wrong with the configuration of the program and that it can't be run. I have .net framework 1 till 2 installed and the microsoft visual C++ 2005 redistibutable on the other pc. Anyone know what I need to do to make it work (and is it normal that my compiles program is smaller then my source code (.cpp and .h file together) ) Thanks in advance. Hi I found a solution to this problem in the (standard ) Visual C++ forums. Here is the link . On the properties of the project - cha ...Show All

  • Windows Forms public IList GetItems()

    hi, I wants to know the return type of the following is IList public IList GetItems() whats the use explanation...... Hi, jitendra badkas IList is an interface, and it is generally considered good practice to code to an interface rather than an implementation. This allows the internals of the method to be hidden from the user. Later, if it is discovered that another type of List would be better, the internal implementation can be chanced without the calling programs need to be aware of this change. Hope it helps.Regards. Zhixin Ye ...Show All

  • Community Chat SaveProjectAs

    Ok...After hearing some complaints on this these boards about not having a "Project Save As" that saves the entire project to a new destination and name...I created this addin for VS05 that does just that. The addin creates a 'Save Project As' menu item off of the file menu and allows the user to select a VB or C# project file and then select a new destination directory and a new name for the project. All standard dialogs used. you can download the xcopy deployment files from: http://codegallery.gotdotnet.com/SaveProjectAs The zip file contains two files: SaveProjectAs.AddIn and SaveProjectAs.dll and all you have to do to get it to work is to unzip the files into your addin directory... Please use this thread or ...Show All

  • Visual Basic Detemining the "owner" of a ContextMenuStrip

    I'm working on a project that utilizes a TableLayoutPanel containing many controls. The controls can be one of three types, and each type has an associated ContextMenuStrip. I have it working where the ContextMenuStrip is applied to it's respective controls within the TLP, and can show and select items from the CMS, but need to be able to determine specifically what control was was right-clicked to show the CMS or the Point of that right click. Thanks for any help! I've tried doing something like that. I can get to the ContextMenuStrip itself, but can't find a property that tells me what control it was opened on.. DirectCast(sender, ToolStripMenuItem).Owner.Location *I've been using the ContextMenuStrip's ...Show All

©2008 Software Development Network