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

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

Sats_b1

Member List

fpizzolo
ImagineNation
Alastair Q
Don McDonald
StGeorge
johnacs
sapaplanus
Amos Soma
TA123
mike6271
qwv
VitCon
Brad-RDA
Martin Schmidt
Izzy545
Alan Stevens
Nick Gravelyn
Hilley
Wolfsvein
Garrett Serack - MSFT
Only Title

Sats_b1's Q&A profile

  • SQL Server How to set douplicate id in sql server 2005?

    Hi There, Some one please help me to achieve this task. I have task to join 2 tables and insert values.The table which i am inserting values has typeid column which is primary key column.I supposed to insert values except this column(TypeId).When i m trying insert values its throw an error saying Error: Cannot insert the value NULL into column column does not allow nulls. INSERT fails. Please let me know ther is a way to set duplicate id for this rows Thanks in advance. See if this helps you. Take a look at my post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1211015&SiteID=1 ...Show All

  • Windows Forms retrieving a databound listbox's selected value

    I am very new to C# programming, so I am banging my head trying to figure something out that should be so simple. All I want is to get the value of the selected item in a listbox which is bound to a database table. If I try to simply display the value in a label, I get "System.Data.DataRowView" displayed. This is part of a project I am working on to populate the items in one listbox according to what item was selected in a previous listbox. If anyone could point me to articles or examples of how this is done, it would be much appreciated. Thanks in advance! I'm not sure I quite agree with your answer, at least not for my configuration. I created a new data source using the Data So ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How manipulate vertexs of a existing mesh? (DX9.0/ native C++)

    It’s my first post here so i’ll try be as much clear as i can. I’m using directx SDK 9 with C++ (native) on the Visual C++ (version 6,  but 2003 dot net  i’d use too) to try build a app that loads a mesh created on 3d studio max and manipulate (refresh to be more specific) some points of vertices of the mesh (try imagine my mesh be a cone, and the top of the cone have a point that ’ve coordinates 1,1,0), all the vertices ’re filled on the vertexbuffer, and i want to refresh that coordinates to 2,2,0.   The question it’s how i modify the points (vertices) of my mesh (the cone), i tryied just acess the buffer using the lock and unlock, but the points of the buffer dont refresh.   Another ...Show All

  • SQL Server Complicated licensing question

    Hi, I have a dual CPU Dell PowerEdge for my SQL server. I have a SQL 2005 license for 1 CPU. In addition to that, I have a SQL 2005 license that I obtained at the SQL Launch event for free. Here are my questions: If I just install SQL 2005 on my dual CPU server, will it not run at all, or will it just utilize one of the CPUs Is this against the licensing agreement I don't expect performance issues even if the SQL software only utilizes one of the processors, so that would work fine for us. However, if this is not a workable solution and I need two licenses, can I use the SQL Launch license as the second license I can't figure out if it is a per-CPU or per-user license. Thank you, Pavla ...Show All

  • Visual Studio Tools for Office VSTO SE + Office 2003 + VS 2005 Pro

    This is more of a Getting Started type of question. For some reason, I'm not finding any kind of basic tutorial that covers building an Add-In using VSTO SE (Beta) + Office 2003 Pro + Visual Studio 2005 Pro. The document that comes with VSTO SE Beta describes how to build a Ribbon, Custom Task Pane and a Custom Form Regin but all for Office 2007 components. I'd like to build an Excel 2003 add-in (or whatever) that displays a button to my end-user. Once the button is clicked I'll grab some data from the current/active worksheet, send the data to a web service and then take the results of the web service call and poke it back into the current worksheet. I've been able to do this in old school VBA (plus the now unsupported SOAP Toolkit) b ...Show All

  • Visual Studio Team System How to edit the vsmdi file to add unit tests for TeamBuild?

    Hi, Like many other people, I only have VS Dev Edition so I cannot create test lists. Can someone show an example of how to edit the vsmdi file to include the desired assemblies with unit tests, and add it to the TeamBuild project file Not sure if this is exaclty a trivial task, but any pointers would be welcome. Thanks! Dear all, I saw in MSDN forums more than one thread regarding the problem of non existent test manager in Dev Edition. Today I had the discussion with my boss about that because we are facing the same problem. As we understand, we have the following options: to edit vsmdi ourselves which is more less impossible to purchase the third party solution mentioned above to wait for another year for Orcas ...Show All

  • Visual Studio Team System Build.aspx and Build.xls Not rendering correctly

    Hi guys, I am on the 180 day trial edition of Team Foundation Server and I am having a problem with the alerts. I get the build completed alert in my email, but when I click on the link that takes me to http://<Server>:8080/Build/Build.aspx artifactMoniker=05312006_212205_68250 It renders some of the page but does not give any details. I did a right click and a view source and it looks like the underlying XML is there, but the XSL page does not seem to be rendering correctly. This is what it spits out... It does not list the build number, project, etc... not anything. Has anyone else run into this Thanks. Jeff Cieslik Build Summary Build name: <a href="fi ...Show All

  • Visual Basic RichTextBox and StatusStrip

    I am tryin to make a status strip continuously update and show the location of the keyboard cursor at all times. For example, 3:33 would mean the curson is on the 3rd line and at the 33rd character. line : character on line Can someone please help me.....!!!!! This is clipped from my editor (I may call statusline in a few more places.) Private Sub RichTextBox1_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles RichTextBox1.KeyUp statusline() End Sub Private Sub statusline() Dim Ln As Integer = RichTextBox1.GetLineFromCharIndex(RichTextBox1.SelectionStart) Dim Cn As Integer = (RichTextBox1.SelectionStart) - (R ...Show All

  • SQL Server Dynamic Query using Multi-Value Parameters

    I am having problems using multi-value parameters within dynamic queries. For e.g. I have a parameter YR which can have more than one yr values : 2003, 2004, .... In my where Clause I have Where yr IN (Parameters!Yr.Value), this gives me an error, however if I give an index lets say Parameters!Yr.Value(0) then it returns the correct report for that year in the above example for 2003, however I need to include all the years not just 1. How can this be achieved Please Help! Thanks, Hi MJ, Use the Join method. = Join(Parameters!MySelection.Value) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Installing DXUT?

    I've created my own application using DXUT. That's a water simulation that uses shaders 2.0. But I've encountered next problem. How to launch a project that uses DXUT on another PC without installing DirectX SDK Currently it doesn't work, even though runtime DirectX is up to date and same for video drivers. When program starts an initialization error "0x0150002" occurs. What Language are you using... The DXUt are just a set of classes that compile into your application... there is no need to install it on the client as your application includes it, but If you are using the GUI Controls inside you will need to make sure that you package up the .fx and texture files that the Framewor ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. TotalRealTime behaviour

    I've used GameTime.TotalRealTime.TotalMilliseconds to access the wall clock time and it looks like it pauses when I drag the game window using mouse. Is it right and is it good :) In my case I need to keep the projectile going even in this case because my game is a network one and if the player drags the window all projectiles should fly in a synchronized manner on both PCs. I use DateTime.Now.Ticks as workaround and get what I need, but anyway I wanted to let you know about this effect. In this case, all projectiles / physics should be done by the host computer, and the others just simulate the transitions between the states received from the server ...Show All

  • Software Development for Windows Vista Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39)

    I installed Daemon Tools on Windows Vista Business. The result was that my CDrom went dead. System Restore hasn't helped. Then CDrom properties reveals this: "Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39)" If you update driver, you get " Windows has determined that the driver software is up to date" I have the same exact problem and i've tried all steps you mentioned, still the problem remains. I have 64-bit Vista with Tsstcorp CD/DVDW TS-L532M ATA. Any ideas ...Show All

  • Visual Studio 2008 (Pre-release) Routed Commands (bis)

    Hi I tried to implement a custom routed command and referring to the thread "Routed Commands", mine doesn't work. Here are the code snippets: namespace CommandTesting { public partial class Window1 { public static RoutedCommand customCommand; public Window1() { this .InitializeComponent(); customCommand = new RoutedCommand ( "custom" , GetType()); CommandBindings.Add( new CommandBinding (customCommand, CustomOnExecute)); } private void CustomOnExecute( object sender, ExecutedRoutedEventArgs args) { MessageBox .Show( "help!!!" ); } } } < Mapping XmlNamespace="Local" ClrNamespace="CommandTestin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D VERY slow on the XBOX

    Im having a hard problem getting good FPS rates on the XBOX, everything turns around and gets alot slower. Does anyone have a solution, or reason for this This line is worrisome, if I'm understanding it correctly: GC Boxed Value Types 5112585 23358The number of value types that have been boxed. Boxing and unboxing are very expensive IIRC. ...Show All

  • Visual Studio Express Editions Password problem

    In Web Developer 2005 Express Edition, to assign a user you must input User Name, Password, Confirm Password etc. I input a 9 digit password with 3 numbers included and the system gives me an error "password mimimum is 7 with 1 non-alpha." I have look into the 2485 problems in the general que and the 462 problems in this que and don't find any answers. I am looking into the possible purchase of Microsoft for the first time and the number or problems is scaring me. Any help would be greatly appreciated. There are some configuration changes that you can make to set te strength of the passwords, but you should ask this question inside the membership groups on http://forums.asp.net as this group here is for registration ...Show All

©2008 Software Development Network