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

Software Development Network >> Sudhakar.hcitek's Q&A profile

Sudhakar.hcitek

Member List

Lisset
cdun2
cak89502
_Matt Smith _
Jason W. Matthews
Aleniko29139
HowardRichards
Edward Kong
Donal McWeeney
mahendra_nath
Matt Bell
bjorneb
Patrick Sears
jchen
jsmircic
Jebasingh
rachbabe
Dagmar Heidecker
sGurpreet
Gravesy
Only Title

Sudhakar.hcitek's Q&A profile

  • 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

  • Internet Explorer Development Javascript Loading problem in IE7 - but not with Firefox 2.0

    Hello, I have the following code that I am using in the header part of my code to load pictures for a slide show. The pictures do not get loaded in IE7 until I manually refresh. However, they get loaded in Firefox without a problem. I read threads about refresh problems with IE7, but none deals specifically about this. Can someone help   <script src="ajax-slideshow.js" type="text/JavaScript" charset="utf-8"></script>  <script type="text/JavaScript" charset="utf-8">  // <![CDATA[    // -----------------------------------------------------------------------------------  //  // This page coded by Scott Upton  // http://www.uptonic.com | http://www.couloir.org  //   ...Show All

  • Internet Explorer Development password text field

    hi, does anyone know how to write code to show (*) (star) password instead of (.) DOt password. Is there is way that we can convert to star text for password! i like to have something different. please help thanks. Alidad I think you should be able to change the password character Have a look at http:// msdn2.microsoft.com/en-us/system. windows.forms.textbox.passwordchar(VS.80).aspx ...Show All

  • Visual Basic Warning As Errors

    Is it possible to default this to on Thanks. I have done this... If anyone would like to vote for this suggestion it is here: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=213927 ...Show All

  • .NET Development Database Backup

    Hi everyone...I just want to ask how to backup MS Access Database (OleDb) using Visual Baic.Net...Hope anyone could help me...Thanks Access is not a server database and to back it up you just need copy the whole file to some other location/media. You could write some code to copy that file. There are also some backup tools on a market that allow to backup harddrive information on periodic basis. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 2D retro side scroller with tilemap and collision detection

    having being a C# programmer for a number of years and a avid gamer I thought at trying to program a side scrolling shoot em up in C# with the XNA Game Studio beta. Some of the issues one encounters in 2D games are amonst other collision detection and a scrolling tilemap. 1. I'd like to know if someone have created a game library which features pixel perfect image-on-image collision detection of image of varying shapes, not only boxes or triangles 2. Is there any C#/dotnet tilemap library available of the great freeware Mappy ( http://www.tilemap.co.uk ) library If not, anything equivelant or similair I dont wanna reinvent the wheel concerning collision detection and tilemaps. Anyone who develops 2D games will run into collision ...Show All

  • Visual C# directoryentry

    hi i have a problem with the first argument of this methode directoryentry.Invoke( ); where can i find the methodname that i should post as the first argument what the available methodename hi all my dear friends: i was tired of trying all the ways and see the same exeption . please take a look at my code , that i use to add a user to active directory : DirectoryEntry de = new DirectoryEntry(" LDAP://192.168.0.1/cn=Users,dc=soheila,dc=org ", " Administrator@soheila.org ", "sohama3t", AuthenticationTypes.ServerBind); DirectoryEntry de2 = new DirectoryEntry(" LDAP://192.168.0.1/cn=Administrator,cn=Users,dc=soheila,dc=org ", " Administrator@soh ...Show All

  • SQL Server Delete rows

    Hi I am trying to delete rows in temp1 which are exist in temp2 delete from dbo . temp1 as a inner join temp2 as b on a . regionname = b . regionname and a . servicecode = b . servicecode and a . directioncode = b . directioncode and a . destorigflag = b . destorigflag I am getting error : Incorrect syntax near the keyword 'as'. thanks in advance subash delete from dbo.temp1 FROM dbo . temp1 as a inner join temp2 as b on a . regionname = b . regionname and a . servicecode = b . servicecode and a . directioncode = b . directioncode and a . destorigflag = b . destorigflag ...Show All

  • Windows Forms component inside controls

    i'm having a problem with components that i place inside control. i get a object reference not .... when i try access the properties of the component. so i have a custom dgv placed on a custom usercontrol that i place on a form. when i set columns it says object ref. . . why ...Show All

  • Visual Studio Express Editions Mid-tone - image processing

    Hi! Does anybody know how to do the mid-tone image adjustment It's in Microsoft Office Picture Manager... Please! Help me! Presumably, your question is: "how do I process an image/picture using VBExpress I would like to know how to adjust the mid-tones similar to what Office Picture manager does". I think your best bet would be to find the algorithms first, then come here when you need help implementing them in your image open/save/close code. I Believe Christian Graus may have posted a few links related to that sort of algorithm (image manipulation). A google search comes up with a few image manipulation links. ...Show All

  • Visual Studio Row hiding

    In a report (rdlc) file I've got a table with a header row and two normal rows (for data). The table is connected to an array of objects. Under normal curcumstances I use both rows for a specific data entry, however for some instance I only need one row to display the data. If the objects property is true (property name is isRoot) then I only need one row otherwise I need two rows. How can I specifiy this in the table I see there is a format property for the row but I dont know how hide a row if a condition is true. Appreciate any help. ...Show All

  • SQL Server Accessing the Current Transaction in BOL (April 05')

    Here is the text I do not believe is correct or at the least misleading... "If you want to terminate the external transaction from within your stored procedure or function. In this case, you call the Transaction.Current.Rollback method. " You cannot terminate transactions declared in TSQL in SQLCLR routines. Derek- Thank you for pointing out this. We will work to update this BOL article! It is possible to terminate transactions declared within TSQL within SQLCLR routines, but it is recommended to manipulate them through the use of System.Transactions.TransactionScope. For example, this would rollback the current transaction: using(TransactionScope transactionScope = new Transacti ...Show All

  • Visual Studio Express Editions How do you send email?

    I want to send email from my yahoo acount to my friend's, how would I do that I know I could just use my email, but I want to make a form that, when I press a button, emails "Happy Birthday!" How would I do this take a look at this my friend: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=724365&SiteID=1 ...Show All

  • Internet Explorer Development IE Interop

    Hi, I've been trying to write a Custom Download Manager for IE using C#. I've found some information here: http://msdn.microsoft.com/library/default.asp url=/workshop/browser/ext/overview/downloadmgr.asp , but I can't figure out what CLSID I should refer to my managed library as, or if I need to register it or something. I don't have any experience in working with COM, so using a hybrid solution could be difficult for me. All suggestions are welcome. Reuben. Sorry if I was unclear, but I'm using C#, and all my code is managed, so there is no COM component for me to register. I registered my managed DLL (with the ComVisibleAttribute), and I know that IE is trying to load my library, be ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XAML and XNA

    Are there any plans to provide XAML support in XNA I realize some things are probably foreign to XNA's current design (like vector support), but even a subset of its functionality would be useful. Today, many studios use swf's (with proprietary playback engines or GameSWF) for UI and HUDs, but XAML would be perfect for that. I have some itty bitty XAML support in my own MDX engine, but it feels silly to develop a playback mechanism for it when MS has the original source and could integrate it with XNA (saving me lots of time). My second best hope is for the Anark Gameface playback engine to be integrated with XNA, that'll be good enough, but I don't think it'll happen very soon... Isn't WPF on top o ...Show All

©2008 Software Development Network