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

Software Development Network >> scottburr's Q&A profile

scottburr

Member List

nic101
Ayronski
rajni10
Christian Sparre
Sujithf
RemcoJVG
Alpehans
Cr7pt0r
Kyle McK
lkshikoh
ktm300
Rapper
leo1
DKB
Virendra Wadekar
Minherz
Jeff Walsh
Michael Morris
mouxaifeong
barry sela
Only Title

scottburr's Q&A profile

  • .NET Development during installing the program ...

    hi, after i publish the program and install the .exe file at the other computer there is no prompte box to say the program has been installed is it normal and how can i make it to tell the user that the program has been installed thx hunb This forum is dedicated to questions relating to the System.Net namespace in the .Net Framework. Please see http://www.microsoft.com/community for a list of alternate forums/newsgroups ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XBox 360 hard drive question for MS staff - semi off topic

    With all the great new offerings out or coming soon for the 360: XBox Live Video Marketplace, XNA game creation, and the recently announced IPTV, the poor little 20GB hard drive's days look numbered. Is MS planning to release a larger hard drive for the 360 I'm pretty sure that many people (including myself) would be very interested in one. I don't want to replace my box either. I wish we could write to external USB hard drives and flash drives rather than using them read only. The more we can comfortably store, the more we might buy... ...Show All

  • Windows Live Developer Forums Somehow deriving an AddPolygon() from a Live Search Collection

    Dear Group, I've recently begun to experiment with Virtual Earth. I do a fair amount of JavaScript programming in my real job; so I created a rudimentary script to allow me to plot a polygon representing a political district in my city. I'm an alderman running for re-election and I got interested in Virtual Earth as a means to make an on-line map of aldermanic districts. Anyway, here is my rudimentary page: http://www.swerbach.com/Neenah3rd/NeenahAldermanicDistricts1and3.htm Summary of functions: Start: Start recording mouse click positions as LatLong pairs Stop: Stop recording mouse clicks Del Last Line: Remove last polyline drawn on the map Display: Show recorded mouse clicks in new window So click the 'Start' button an ...Show All

  • Windows Forms How to add duplicate datacolumn to datatable

    Hi All, How can we add a duplicate column to datatable. I already had a column named "Action" in my datatable, and i want a duplicate column to "Action". Note: Actually the datatable is being filled from dataset. I cannot change the Sql Query because those are predefined by analysts. Thanks in advance. You can not have 2 columns named action in your data table. You can add a datacolumn that uses an expression to copy the data to the new column. DataColumn dc = new DataColumn ( "Action2" ); dc.Expression = "Action" ; dt.Columns.Add(dc); ...Show All

  • Smart Device Development closing forms

    Hi all! I'm wondering a bit about how to close a form in a correct way. Currently I'm using: myForm.Close(); otherForm.BringToFront(); I thought this would give me a result where the form shown for the user is beeing closed and another form, which i choose myself(otherForm), is beeing shown, but it doesn't! This(above) is the result i want to get but how do I code it I'm using CF 2 and developing for WM5 Smartphones. Thanks, Martin Hi Martin, I think what you want to use is show your forms using ShowDialog(). Showing a form this way (modally) will block your primary form from receiving input while it's displayed, but when your dialog form is closed, your main form will get focus back. In the sample code below, the dialog is just ...Show All

  • .NET Development Error: Unable to open shim database

    I get this kind of events logged in the eventlog: Source: .Net Runtime Type: Error Unable to open shim database version registry key - v2.0.50727.00000. Is this 'normal' behaviour or is there a misconfiguration. I have this messages on Windows 2003 Server, on SqlServer2005 boxes as well on TFS app tier and Terminal Server running VS2005. Strange thing is: everythings seems to work OK... Rene I am also looking for more information on this issue. I have an application that has stopped working since installing the final version of VS2005 - It was working OK with the Beta versions, but now when I try to sign on on to my Web app , I get a Server Application Unavailable message. The event logs contains mes ...Show All

  • .NET Development ORA-12154 error when connection to Oracle Database from C#

    I'm trying to connect to an Oracle Database 9.0.2 using OracleClient in C#. I get the error "ORA-12154 Could not resolve service name" when trying to connect to the database. I've checked the TNSNAMES.ora file an it seems ok. The project where I get this error was previously a .VS 2003 project which I converted to a VS 2005 project. As a test I created a small project in VS 2005 where I connected to the same Oracle database with the same connection parameters, and it worked fine. Does anyone have a clue on what might be the problem Do you have multiple Oracle installations on your machines like Oracle client and Developer If so you'll have to set up the tnsnames.ora on both HOMES. Or else setup the regist ...Show All

  • Visual Studio VSIP for other MS platforms

    Hi, I need to know whether addin compiled and tested on Windows (XP for instance) for Visual Studio 7.0, 7.1 and 8.0 compatible with the Visual Studio for XBox360 If the precompiled binaries are not compatible then obviously you'd need to recompile your addin for XDK in which case you'll need VSIP for XDK. Is that avilable In short i just need to know the chances of porting a VS addin developed on Windows to XDK and make it available for Visual Studio XBox360. Thanks in advance. Hi Zul, What is Visual Studio for XBox360 I had never heard of it, could you provide a link . Searching the Web I have found XNA Game Studio Express, is that the same thing you are referring to In any case, from what I understand, you always use Windows X ...Show All

  • SQL Server SQL Express Database Script

    Hi all, I am totally new with this, so this might be a stupid question. But, I need to load a script for a database, and was told I could use SQL Server 2000 by running a new query. I downloaded SQL Server express, hoping I could use this too. But, what are the commands for loading this script, and where do I do that Is it at the C prompt I'd greatly appreciate your help! Thanks, Steve Go to the microsoft downloads site and download the Sql Management Studio for Express, it will give you a UI to run what you need. Other then that the command tools are located in the main directory for the SQL System under the Program Files directory... Called sqlcmd SQL Express Home Page SQL Expr ...Show All

  • Visual C# Trouble adding WMI code to C# application

    Hi, I'm not sure where to begin but I am a system adminstrator who runs vb scripts for simple tasks. I would like to change these scripts from a command prompt to a nice gui screen for the other admins to use. Microsoft published the WMI Code Creator which was very helpful in making the code in Visual Basic Script but not sure how to use the C# version Basically I tried to enter this code into a very simple Windows form and made a single button to execute it. Can someone point me in the right direction :) Here's the code in Visual Basic Script. Just checks for the Application Management service start mode. strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CI ...Show All

  • Visual Basic Install Windows Service Using InstallUtil.exe

    It's my first to write a service with Visual Studio 2005, at first i had an application written as Console Application, I did copy the code into a new Windows Service Project so my code like like the following: Imports System.IO I mports System.Security Imports System.Security.Permissions Imports system.Data.Odbc Public Class Service1 Protected Overrides Sub OnStart( ByVal args() As String ) Watch() End Sub Protected Overrides Sub OnStop() Some code Here End Sub <Security.Permissions.PermissionSet(SecurityAction.Demand, Name:= "FullTrust" )> _ Private Shared Sub Watch() Some code Here End Sub ' Define the event handlers. Private Shared Sub OnChanged( ByV ...Show All

  • Windows Forms Problem in VS 2005 - c++/cli

    hi there... currently im working on this project on WiMAX. My section in the project is to create a tree view and when the icon are drag and dropped in the pannel, it will appear in the treeview, jus like the windows explorer. Basically there are 2 icons, 1 base station which is the parent while the subscriber station wil be the child. I have done the codes to create base and subscriber staioon. my only problem is the subscriber station do not appear as a child. Please see my codings and state where i went wrong. Thanks. TreeNode^ baseNode; array <TreeNode^>^ subNodeArr; static int count=0; #pragma endregion private : System::Void add_baseNode() { baseNode = gcnew TreeNode(String::Format ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XFileLoader.cs

    Hi, I wrote a little class for parsing X-Files (text mode only). It currently reads: - frame hierarchy - frame transforms - meshes (position,normals,texcoords) It's only tested with x-files from the Panda Exporter and 3ds MAX. http://markus.rubicon-net.de/code/XFileLoader.cs and I used this here for test rendering http://markus.rubicon-net.de/code/XFileRenderer.cs Feel free to use it So sorry, it was getting late yesterday (playing Saints Row *g*) so I made this test-app during breakfast this morning: http://markus.rubicon-net.de/code/XFileTester.zip Short explanation: It just renders a mesh from a x-file (textmode), very beautiful coder art - a cylinder *lol*.  The necessary inital ...Show All

  • SQL Server Definition of 'Persistent Data'

    What is the definition of 'Persistent Data' as related to the definition of a RDBMS thx, Kat Hello, Data is said to be persistent in RDBMS when the transaction that has written it is commited. One of cornerstones of RDBMS is the ACID contract between the system and the components that issue transactions. ACID stands for Atomicity, Consistency, Isolation, Durability. The Durability property sais that once a transaction has been commited, its modifications are guaranteed to survive any failure of system, once the permanent storage is not damaged. Another term for Duarbility is Persistence(they just use Durability because ACID is the cutest abbreviature one can think of :) ) So, basically, persistent data is the data that has be ...Show All

  • SQL Server How Do I Create Table Relationships?

    I have spend days researching this and found others with the exact same problem but there are no useful replies as people don't seem to understand our problem. Please read this carefully... What is the best way to create relationships between new SQL tables For example, say I want to create a new database with tables for Customer, Orders and Details, how to I relate these tables - Edit via the Dataset designer in Visual Studio 2005 - Use the Server Explorer's Table designer in Visual Studio (not sure how to use the 'relationship' icon) - Use SQL Server Managment Studio Express (SSMSE) Database Diagram - Something else I am using Visual Studio 2005 Standard and SQL Server 2005 Express (SP1). I created a new database in Visual Studio ...Show All

©2008 Software Development Network