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

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

naddyB

Member List

mohasad
CoderD
Raja Nadar
bilalso
BRCEWANE
BasharA
JohnnyR
Junioru
suranga_d
Rajesh batchu
Alessandro Camargo
KonRi
James A. Gayhart
fulish1
Jeanne P
cablehead
jackhammer1977
Dmitry Pavlov
EileenWin
tonhinbm
Only Title

naddyB's Q&A profile

  • Visual Studio Team System The Service Pack 1 for Visual Studio Team System Has Problem(s)

    Our team have a solution with 4 projects inside, 3 of which are C# projects. The other one is a hybrid C++ project with mixed C++ code both managed and unmanaged. After we installed Service Pack 1 for Visual Studio Team System Has Problem(s), our builds just can't run on any client's machine any more. The one giving problem is the dll built from the C++ project. The error occurs while loading the dll. Error signiture: ====================================================== AppName: ******.exe AppVer: 1.1.7.30059 AppStamp:45bf04d6 ModName: kernel32.dll ModVer: 5.1.2600.2945 ModStamp:44ab9a84 fDebug: 0 Offset: 00012a5b ====================================================== We tested by building exactly the same version on Workstati ...Show All

  • Windows Forms ComboBox SelectedValue

    Hi, i have a doubt, I have a combobox and I'm binding it using BindingSource. The problem is that I show in the combobox the name of the field that is in the data base, but I store the key number in the database. My problem is that I can't insert the SelectedValue inside the database and it returns me that this field cannot be null, I really don’t know what to do, any ideas I tried setting the key using ValueMember, but this didn’t worked either. Your code example is binding your combobox to table "Grupo" to produce the pick-list, however where are you binding the "SelectedValue" property of the combo to the "Products" table e.g. this .comboBox_grupo.DataBindings.Add( new System.Windows.Forms ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Build for Xbox 360 and Windows in one project

    I have created a Visual Studio project template that can be built for either Xbox 360 or Windows, by selecting the correct platform in the VS IDE. There's nothing particularly clever about this, it just uses some of the conditional abilities of MSBuild projects to merge the properties of an Xbox 360 XNA project with a Windows XNA project. There's a slight problem though - the VS Express C# IDE has, by default, disabled the build configuration and platform settings to present a simpler interface to beginners. In order to use this project template you need to re-enable these features and should probably have a reasonable understanding of what they do. This could be the reason that the XNA devs have mentioned that building for both platforms ...Show All

  • Visual Studio Express Editions Can't install the SDK

    Hello! I've installed the VS C++ 2005 Express and am trying to compile a failry simple socket-using DLL. The compile fails because none of the winsock.h, winsock2.h, WS*.h are installed. I figured, I need to install the "SDK", and downloaded the very recent VsSDKApril2006.exe. When I run it, however, the setup tells me, having Visual Studio 2005 is a pre-requisite and fails with: "Visual Studio SDL installation failed Error Code = 1603". The VS C++ 2005 is, of course, installed, albeit in a non-standard location: C:\MSVS2005 (I don't like blanks in the directory names). What's going on Thanks! Sadly VsSDKApril2006.exe is not going to do you any good as it is the Visual Studio SDK and s ...Show All

  • .NET Development GetHashCode and Equals once again

    I do not see how GetHashCode() and Equals() can ever successfully be implemented given the guidelines. I am assuming that one of the guidelines, apart from the well-known one of two objects being equal ( Equals() ) returning the same hash code ( GetHashCode() ), is that GetHashCode can not change during the lifetime of an object. Given this assumption it appears to me that GetHashCode must either be implemented on a totally immutable class, or that it must only use immutable data members of a class. Since this is the case, the Equals() function must also depend on either a totally immutable class or only use immutable data members of a class. To me this need to rely only on immutable data in a class defeats the entire purpose of object eq ...Show All

  • Visual Studio Team System Need help to stop running a Build Type in Continuous Integration mode

    Hi, I havent been able to find anywhere on how to remove or stop Continous Integration on a Build Type. Can anyone point me to how to do this Thanks I'm not quite sure what you are asking. Do you mean that you want to be able to stop a running Team Build If that is the case, you can use "TFSBuild.exe stop" (with the appropriate parameters for the server and build) to stop it. If this is not the case, can you please elaborate further on your needs and I'm sure that we can be of assistance. - Steve ...Show All

  • Windows Forms Resources(Strings)

    Hey, In Visual C# 2005 how do you make it so that if the value of a string I made in the resouces of the project is eqaul to 1 then it will do somthing otherwise it will do another thing and how would I change the value of it with C# code I got an error trying to do this becuase I did not know how... Thanks :) The best way to define strings and other application settings are via the settings. Just open the project properties, you will see a tab called settings, add any value you wish there. To access these values, call: string s = WindowsApplication1.Properties. Settings .Default.Setting1; to set it: WindowsApplication1.Properties. Settings .Default.Setting1 = "some value"; remmeber to s ...Show All

  • Windows Forms datagridview doesn't update properly after changing binded table

    <i originally asked this post in a different area, but no answer, so i'm trying a different forum> I'm working on a project that's based off a datagridview that binds to a datatable in an xml dataset. I'm having this strange issue. Basically I update the datatable through code, and I want the changes to be reflected back in the datagridview. This works sometimes, however other times the grid won't update. Usually the grid won't update if I programmatically change a row that is currenlty selected in the grid (but if i go back to the grid, deselect the row and highlight another row, the datagridview will update itself). One way I temporarily got around this was to manually change the row selection before I change the data, but thi ...Show All

  • SQL Server Composite primary key autoincrement from 1

    Hi, I'm currently writing a small application that is using SQL Server as a back-end database. A part of my database looks something lie the following: Tables: Orders(OrderId[int, PK], OrderDescription[varchar] etc...) OrderLines(OrderId[int, PK, FK], OrderLineId[int, PK], etc...) What I need to achieve is - everytime that a new line is inserted into an orderlines table part of the primary key will be the OrderId and the OrderLineId should be auto-incremented from 1 for each OrderId in the OrderLines table. I know i can do this manually in my program, but i'm just wondering if theres a way to achive this in SQL Server Thanks, Nick Goloborodko Hi BushGates :-) The two options are: -Doi ...Show All

  • Visual Studio Team System tsql errors when importing database

    I'm getting some tsql errors when I imported my database. These same "errors" check just fine within the Enterprise Manager. Is there are way to sync up the 2 so VSTS isn't flagging sprocs that checked ok before in the database BTW--I did import the existing schema from my SQL2000 database. Thanks! Ok then...stupid question...how to I modify my local SQL Server settings then I'm using SQL Express and can't find where I'd make those sorts of changes. Unless everything just gets scripted ...Show All

  • SQL Server split address into multiple field

    i want to write a code that can split the addresses into multiple fields. anyone can point me out where to start lets say i have "12 north plaza boulevard apt.16" and i want it to become: address_number 12 suffixA North street_name plaza blvd suffixb apt16 Sorry, this is hardly possible. Thats like telling which 3 figures where summed up to get the result of 16 After a aggregation is hardly possibly / impossible to split up the aggregated value, because you do not know where the Street Adress starts and ends. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems with SDK August 2006

    I've recently installed the DirectX SDK (August 2006) on my Windows XP Professional machine. There was no previously installed SDK version. After doing that, I installed the Visual C# 2005 Express Edition to start coding some DirectX. I'm following some examples from the book "Managed DirectX 9 - Graphics and Game Programming", Tom Miller, 2003. (ISBN: 0-672-32596-9) I encounter problems at the very first example! 'Microsoft.DirectX.Direct3D.PresentParameters' does not contain a definition for 'Windowed' The "faulty" block of code looks like this: PresentParameters presentParams = new PresentParameters(); presentParams.Windowed = true; I have also noticed that there are many different versions of the managed dll files, ...Show All

  • Visual Studio Express Editions Display Problem

    I coded a car race program and everything functions properly, except for the display. The program is supposed to display the number of correct and incorrect choices made by the player depending on his selection, but my program isn't displaying either one. Instead, it is displaying the number of times the program is run. Here is the piece I think is not functioning correctly: Beginning... Dim sChoice As String Dim sResult As String Static iCorrectNum As Integer Static iIncorrectNum As Integer sChoice = lbxResults.SelectedIndex.ToString (From a list box with selections) ... (Area where I think the problem is)... If sChoice <> "No Guess" Then If sResult = sCh ...Show All

  • Software Development for Windows Vista my question is ?

    i want to make a software for changing the functionality of hardware or you can a software that will add functionality to some the input device, like changing the function/work of a keyboard. i want to make a software for changing audio signal to digital signal. is it possible to do that n please also tell me about this i want to know how keyboard/mouse interact with the system how any instruction is get executed by the system whenever any key is pressed in mouse/keyboard e.g. when we pressed 'a' key in the keyboard then exactly what happens in the system how system execute that instruction i think my question is clear to you , please give ans of my query n if any doubt in question then ask your welcome. thank you I'm mo ...Show All

  • .NET Development Dns.GetHostEntry does not resolve host names same as NSLookup does (for alias addresses)

    Hi everybody, Result of NSLookup: > 10.10.10.128 ... Name: ocs.ims.integ Address: 10.10.10.128 > 10.10.10.129 ... Name: ocs2.ims.integ Address: 10.10.10.129 Result of Dns.GetHostEntry(IPAddress.Parse("10.10.10.129"): AddressList [0] 10.10.40.233 [1] 10.10.10.128 [2] 10.10.10.129 HostName "ocs.ims.integ" --- instead of "ocs2.ims.integ" Is there any possibility to make a DNS query to resolve the host name of an alias address I run multiple instances of a server on a single machine and need to know the host name of each instance. Regards, Paul ...Show All

©2008 Software Development Network