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

Software Development Network >> uma kadagi's Q&A profile

uma kadagi

Member List

djche
Marcos Martins
Chris Lively
rgalgon
Christoph Hornung
tammali
Alexandrea
Si Keen
koder monkey
danny1999
Chris.Stewart
haihtomy
Mr_White
ananth prasad
Cyber Sinh
kyelzbub
NoEgo
shax
DD_Helmetman
Muhsin Zahid Uğur
Only Title

uma kadagi's Q&A profile

  • Visual C# Combobox.HandleCreated question.

    I decided to fill a combobox with items from a DataSet but it naturally should work only once. I chose HandleCreated method. The odd thing is: the ComboBox is filled up TWICE: I see a double set of my record fields in the control. Is it something specific to this method that it fires twice I checked my entire code and could not find another place where this function could be possibly called from. What is a better way to do this task Thanks. There are better places to fill a combox box other than HandleCreated event. This event can be fired many times. Since the combo box will be placed on a form (or a UserControl perhaps) then you can fill it in the form's constructor or in the form's Load event. ...Show All

  • SQL Server How to use the Microsoft OLE DB Provider for DB2.

    I follow the steps: 1.In configure OLE DB Connection Manager dialog, I click New. 2.In Connection Manager dialog ,I choose Native OLE DB\Microsoft OLE DB Provider for DB2. 3.In Connection Manager dialog I click the "Data Links" button. Now I am on "Data link property" dialog.  4.On connection tab, I enter fmdb for data source, which is my remote database name. On Network section I choose TCP/IP Connection and set the right IP/Port. Uncheck Single sign-on and enter the user and password. Then comes the Database section. Database name fmdb for Initial catalog,"fmdbrun" for Default Schema,  then what is Package Collection (My db2 database is in a AIX/RS 6000 box). 5.On advanced tab, I choose DB2/6000 fo ...Show All

  • Visual Studio Team System Could not find part of the path ... DatabaseUnitTest.vstemplate

    I create a new SQL2005 project and then create a new test for a stored procedure. The new project with the test seems to create OK (I haven't run it yet) but I get the following error "Could not find part of the path C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplatesCache\CSharp\2057\DBUnitTest.zip\DatabaseUnitTest.vstemplate" I have a C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplatesCache\CSharp directory but the subdirectory within this is 1033 not 2057 - should I be concerned Further to this. My unit tests are not being created - the project creates OK, in the project I can create a unit test, but if I right-click on a sproc in the db project and select 'Create Unit Tests' I get the e ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. A noob's first game: Shape Battles (a GeoWars clone)

    Well, I've "finished" work on my first game, which was really just a launching pad for me to experiment with XNA etc. Im quite new to game programming and have limited experience with C# (although I have exp with C and work with ASP.Net in my 9-5). I wanted to post my source code for anyone interested in checking it out, in the hopes that other noobs like myself could gain something from it. You can find it on my MSN Blog here: http://xnagamer.spaces.live.com/ Enjoy, and comments are defnitely appreciated! Thanks! The Creator's Club doesn't work that way right now. People have to get the source for a game compile and deploy it from GSE to their 360. That will change (soon hopefully) and will hop ...Show All

  • .NET Development Synchronised Time

    Hi, We have client applications that need to synchronise their data with one another. For this reason the time on each of the PC's needs to be the same (within 2 minute margin is fine). The synchronisation procedure runs every hour but certain clients can only synchronise after months (laptop-user)! How can we ensure their clocks are synchronised at all times If there is a webservice somewhere on the internet that provides the time, how do we read it Also, does anyone know of two-way synchronisation code/documentation worth looking at Thanks D. Windows has built-in time synchronization. Normally, a computer logged into a domain will synchronize its time with the domain controller. Alternatively, any Windows computer ...Show All

  • .NET Development Whats the Best XML Object

    Whats the Best XML Object for reading nodes,attributes and there values Speed is high priority If you want only read an Xml file the class that assure you the best performances is the XmlReader (check the documentation about how to use it). Remember only that you can read only in one direction, from the beginning to the end of the document/fragment. If you want to move up and down between nodes instead use the XPathNavigator object. ...Show All

  • Visual Studio Command Line

    I am attempting to use VSS through the command line, for the purpose of batch files, however whenever I use any of the "ss" command, I will be prompted for a password, and when I enter the password, even if it is correct, it will not allow me to login. Is there some way around this Can you give us an example of what your script contains And did you make sure that your password you specified is your VSS user password not your Windows user account password ...Show All

  • Audio and Video Development XML Parser Performance..

    Does anyone have any relationship data between XML Parsing (using the built in spec Parser) and specific CES devices We are looking for data based on the parsing and handling the parsed xml stream, such as dynamically creating menus, pop up messages, dynamic playlist navigation, game engine datasets etc. Our SAX implementation and DOM implementations are multi-format compatible but we are looking to verify performance at this time before giving up on the built in spec parser. Any one doing this kind of dynamic work already and willing to share their experiences Thanks, Denny B. Yes we have implemented an XML parser for cross compatibility (BD-J, Netblender, and HDi) ...Show All

  • SQL Server Run Report Multiple times Programmatically in order to create a Table of Contents

    Hi, I have been working through how to generate a Table of Contents (page numbers need to be from a pdf format) in the front of a very large price list report. I am so close to having everything the way I need it. In fact, I can get the desired results by manually doing the following: 1. Run the report in Report Server - (custom assembly writes the preview page numbers to a TOC database table) 2. Truncate the database table - (I'm not sure why I have to do this, but it is the only way I can get the new values created in step 3 to write to the database properly) 3. Export to pdf in Report Server - (writes the correct pdf page numbers to the TOC table) 4. Refresh the report in Report Server 5. Export to pdf again in Report ...Show All

  • .NET Development open serial port

    hi guys, I have a serial port that i pass through contuctors to other classes, the qtion is how can i open this serial port once in t application and keep it open all the time and availabe all classes that use it. 10x Hi, danych You can create a static instance of the serial port (System.IO.Ports), and open it. In this way, other classes can use the instance as using the port. more about serial port class: http://msdn2.microsoft.com/en-us/library/system.io.ports.serialport.aspx ...Show All

  • SQL Server How to change sys_syslanguage SQL Server 2005 for edit column dateformat?

    How to change sys_syslanguage SQL Server 2005 for edit column dateformat. Not posible edit this column http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=955940&SiteID=1 ...Show All

  • Visual Studio Team System how to check who is accesing TFS

    Hi , In my team we are having 5 administrators in TFS , all are giving some permissions to users, at some time it goes wrong. so i wan to know is there any way to identify who is accesing and giving permissions to whome in TFS, please help. thanks and regards suresh Sorry, I think I didn't explain myself correctly, of course, I'm not telling you to install anything from the internet, I'm asking you to look for some examples about using the eventing service in TFS, for creating a webservice and subscribing it to the AclChangedEvent, so you will be notified, via the webservice, of when occurs a permissions change, and who is doing it. So I will try to resume, very shortly, how the event ...Show All

  • Visual Basic Difference between And and AndAlso???

    Whats the performance difference or any difference when building if statements using AndAlso, OrElse instead of Or and And Spotty, I'm a new guy here...new to Visual Basic. Am I to understand that the use of AndAlso and OrElse primarily provide performance benefits in that unnecessary code is not evaluated It seems like this is generally something that goes on well beyond the view of the user and that, in most cases, a user would never know (or care) that an AndAlso statement was used as opposed to an And statement. Would it be a good practice to exclusively use AndAlso and OrElse , unless a specific case for using And or Or came up This question seems to have been answered a number of different ways, but I'm trying to ge ...Show All

  • Visual Basic Security

    Hi all I am a relative newbie to .Net and know little about security issues. I have written a VB2005 application that I have installed on one workstation. This works fine. I now need to be able to run this application from another workstation. If I open the shared folder that contains the application from the second workstation and try to run the app I get a security message telling me that I cannot run the app. What do I need to do to allow this to happen I need to keep the application in an identifiable shared folder so that a second app running on the second workstation can call it. Thanks in advance Roy Thompson Hi, I think you would have to enable threading or is it called multi-threading for your applicatio ...Show All

  • Visual Basic Bound DataGridView column naming problems

    I am using VS2005, Team Edition, with .NET version 2.0.50727. In the course of developing a program, I have had occasion to bind a DataGridView (SelectedSourceGrid) control to a data table (SelectedSourceItemsTable). The SelectedSourceItemsTable has these columns (from the Immediate Window of my executing program) selectedsourceitemstable.Columns(0).ColumnName "TPID" selectedsourceitemstable.Columns(1).ColumnName "TPNAME" selectedsourceitemstable.Columns(2).ColumnName "AccountType" selectedsourceitemstable.Columns(3).ColumnName "CreditedDistrict" selectedsourceitemstable.Columns(4).ColumnName "EarnedPct" selectedsourceitemstable.Columns(5).Column ...Show All

©2008 Software Development Network