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

Software Development Network >> Rajkumar Cheney's Q&A profile

Rajkumar Cheney

Member List

Electuur
ssouki
TTris
SanthaMind
hye_heena
Larry Smith
pattyg
WinFormsUser13232
Davids Learning
Elaine.Wong
BLRisner
kevin delafield
SolveIt
DarrenARBell
Greg Wilkerson
Solitaire
Xfolder
H.Saber
qmatteoq
Vasura
Only Title

Rajkumar Cheney's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Where do I find my Xbox 360's Connection Key?

    Where can the Connection Key be found on my Xbox 360 to get it to connect with XNA You won't be able to debug or play a 360 game until you have a Creator's Club membership, which I'm hoping will be live when GSE is released around the 11th. Stay tuned (i.e. keep checking the XNA home page ) You should be able to develop the game beforehand though, just not run it. ...Show All

  • Windows Forms TableAdapter Problem.

    I am using VB.Net 2005, my windows application bind to two data tables which is member(memberId, name, phone, joinDate) and payment(paymentId, memberId, year). I need to implement the following SQL into tableadapter: SELECT memberId, joinDate, phone, name, FROM member WHERE (joinDate > ) AND (NOT EXISTS (SELECT 1 AS Expr1 FROM payment WHERE (humanId = member.memberId) AND ([year] LIKE ))) But when I finish created the tableadapter, it only accept one parameter, FillByFee,GetDataByFee(joinDate) What’s wrong What should I do How to create an tableAdapter that can accept two p ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Will XNA work with .......?

    hey everyone im new to this forums and i just had a quick question but if this question has been already asked then you may lock it. ok my question is i recently downloaded Microsoft Visual C# Express 2005 will this work with XNA / is that the only program i had to download for XNA.. or in other words are there any other software i need to download to use XNA on August 30th or will XNA come with the other programs Thank You very much..   Kevin Cogger MSFT wrote: Actually, the C# Express you downloaded is exactly what you need. When we release the XNA Game Studio Express beta on August 30, it will integrate with your existing C# Express. Normally C# Express doesn't support add-ons, but this is a ...Show All

  • Visual Basic Noob Database question

    Hello, please excuse this question from a total Noob! Im quite happy programmign away in the VB.net 2005 application that im developing, and i am displaying fields from my sql 2000 database, in data grids, in text boxes and all is well. But my question is this. how can i manipulate data fromt he database that isnt shown in test boxes on the screen, i.e id love to load some variables with values from the database is this possible the syntax is elluding me at this stage. many thanks and i look forward to some advice on an article that may help, Google just gives me back so many misleading articles! Ok im still stuck it seems. Ive got an undertsanding of how to Bind d ...Show All

  • Visual Studio Team System Error when creating new Tam Project

    Team, I can connect to the TFS server and perform all activity except create a new team project. Here is the log file 2007-02-19 12:35:41Z | Module: Internal | Team Foundation Server proxy retrieved | Completion time: 0.468699 seconds 2007-02-19 12:35:41Z | Module: Wizard | Retrieved IAuthorizationService proxy | Completion time: 0.5624388 seconds 2007-02-19 12:35:43Z | Module: Internal | The template information for Team Foundation Server "TeamFS" was retrieved from the Team Foundation Server. | Completion time: 2.1560154 seconds 2007-02-19 12:35:43Z | Module: Wizard | TF30227: Project creation permissions retrieved | Completion time: 2.2028853 seconds 2007-02-19 12:35:49Z | Module: Engine | Thread: 8 | New project wil ...Show All

  • Software Development for Windows Vista I am getting error while opening a WF ProcessInstance

    Server Error in '/' Application. Hi keshavbs , I received the same error. It seems that if something changes in the workflow then this exception occurs. My scenario : Fetching the instance of a state machine workflow from SQLPersistence store. What changed : Changed the event arguments to include another public field Resolution : Abort workflow instance and submit new instance Regards Jaco ...Show All

  • Internet Explorer Development How to make a hyperlink navigable in an editable web page (i.e. when designMode = "On" or contentEditable = true)

    I have created a WYSIWYG html editor with the help of an article at http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnmshtml/html/createwp.asp Everything works fine. Now I just want to make navigable hyperlinks in this editor. A user enters a hyperlink (Say www.msn.com) in the editor, editor detects the link, changes its color and underlines it but do not take user to the www.msn.com when he clicks the link. Is it possible to make this link navigable right within the editor. Thanks in anticipation Hi, The interface does not allow this at the moment. It's great feedback to allow a user to hold the control key and be able to navigate from the link as with other editing applications such as word. Tha ...Show All

  • Visual C++ Run only one application

    Hi, I want to create application that can only be executed once. I mean like MSN, once you have run it and you execute it once again, the previous program window will appear. Can someone please show me how to do it Thank you Also see "single-instance" - Google Search . There are many other search engines that you can use instead. ...Show All

  • Visual Basic Classe asociate with Excel.

    My herited textbox class change my cel value in Excel, Unknow reason..... my classe : Imports Microsoft.Office.Interop.excel Public Class TextBoxValidator Inherits System.Windows.Forms.TextBox Private cellValidation As Range Private validatestate As Boolean = False Private tooltip As New ToolTip Public ReadOnly Property getState() As Boolean Get Return validatestate End Get End Property Public Property ValidationCell() As Range Get Return cellValidation End Get Set(ByVal cell As Range) cellValidation = cell End Set End Property Private Sub TextBoxValidator_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.GotFocus If Me.ForeColor = Color.Gray Then ...Show All

  • Visual Studio Team System Profile Fails

    Problem: 1. Create a simple project. e.g. namespace profiletest { class Program { static void Main( string [] args) { for ( int i = 0; i < 100000; i++) { Console .Write( "." ); } } } } 2. Create and exectued a profile session. 3. Everything runs fine, but upon completion of the process I get the following error: Performance report c:\profiletest\profiletest060811.vsp contains no data The file profiletest060811.vsp exists and is 212 KB long, but Visual Studio will not display anything after the error. If I run the exact same project on a different computer it profies without any problems. I formatted my hard drive and reinstalled Windows ...Show All

  • Visual C# escaping characters

    i need to write some query in code i want to know if csharp has anything like heredoc in php i hate having to write my queries like this: "select group_name = group_name, " + "group_key = group.group_key " + "from dbo.sponsor " + "INNER JOIN dbo.client s_name " + "on s_name.client_key = sponsor.client_key " + "INNER JOIN dbo.[group] " + "on [group].sponsor_key = sponsor.sponsor_key " + "where plan_key = " + planKey+; it gets really annoying Use a stored procedure or view in your database. Or store the query in a textfile resource in your program. ...Show All

  • SQL Server Need advise on SSIS?

    I am very new in SSIS. I have the Report Server set up with two dozen of the OLAP reports in it. The reports are connected to the OLAP database on a seperate computer running on Sql 2005 server and the data source for the OLAP DB is pointed to the warehouse database on another computer running on Sql 2000 server. The warehouse server updates daily from a number of "Production" Sql servers running on Sql 6.5 and Sql 7.0 with the legacy front-end data entry application. I know the update from the "Production" Sql 6.5/7.0 servers to the warehouse server complete around 9am in the morning everyday. How do I set up a package in SSIS to schedule the update of the OLAP database say 9:30am so that end-user can have the latest d ...Show All

  • Windows Forms Multiple Controls for editing a Single Column of Datagridview Control

    HI, I have a datagridview on which one column is a combobox column on the basis of the value selected by user on the column ,Other column get populated the value .I want the other column have different controls for editing .Can a column have different controls for editing like a DateTime picker ,a Textbox and a combobox in a single column. Regard Anilesh Lakhtakia Simple answer: Every column belongs to one and only one 6 predefined or custom class. That's why a single column is under one defining class, say DataGridViewLinkColumn contain only hyperlinks if any and nothing more. Column class defines possible access methods for that particular data type. Hope this clarifies situation and usage. ...Show All

  • SQL Server Dynamic feed of table name to Transfer SQL Server Object Task

    Hi I would like to be able to feed the List of tables to the Transfer SQL Server Object Task dynamically. I have got a foreachloop container which it feeds the table names into a variable @table_name (string). Transfer SQL Server Object Task is with in foreachloop container I did add an expression into the property of Transfer SQL Server Object Task and assign the tablelist property to @table_name I would be grateful if you can give me any hint. Thanks S This is how to do it... 'create sql server object task to move tables Dim MoveTable As Executable = Child.Executables.Add( "STOCK:TransferSqlServerObjectsTask" ) Dim MoveTableTask As TaskHost = CType ...Show All

  • SQL Server SQL Server 2005 Reporting Services presentation

    Hi, I'm looking for SQL Server 2005 Reporting Services presentation. Anybody help, please. Thank you. Hi, Type this in google: reporting services filetype:ppt and you will find what you are looking for. You can also go to https://msevents.microsoft.com/cui/default.aspx culture=en-US and look for a webcast about reporting services. Here you can download webcasts from the past. Sometimes you also get the presentation. Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

©2008 Software Development Network