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

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

sanjeevm

Member List

TheAgent
JIM.H.
ray_newbie_SSIS
Galeana84
sdoc
omrivm
GSReddy
Tekdino
J. Clark
Tin Aung Soe
ZopoStyle
ares_l
tk_vb
siavoshkc
Alessandro Camargo
_Gerry_
Derson Andrade
vsvinuraj
AlucardHellSing
BlackPepper
Only Title

sanjeevm's Q&A profile

  • Windows Forms How to attach a manifest to a dll file?.

    I am doing a presentation work on "attaching a manifest to any file" , and i was not able to create a manifest for a dll file.Can anyone help me regarding this . Ruppinarun I jus know that there are 4 types of manifest(Application,assembly,Application configuration,publisher configuration). And i tried Manifesting an application and got it done. Now i am trying to attach a manifest to a *.dll file(i dont have much idea about manifests just trying to manifest any file,ie. a *.exe,*.dll, and some java files ). so can you just explain what kind of manifest can be attached to a *.dll file . And if possible the way of attaching it. ...Show All

  • Visual C# How to get a page source code of URL programmatically?

    From a C# routine I need to go to a URL page and download the HTML source code of that page bypassing the browser. I then intent to analyze the code and extract another URL -- but I already know how to handle it. I prever to have this page in memory, as a string variable, not as a disk file--it is intended for a very temporary usage. The challenge for me is to figure out how to have the program download the HTML code without alerting the Internet Explorer Browser. I am sure it is a simple problem for a longtimer. Hope for help. Thanks You can fetch the html page using HttpWebRequest class: HttpWebRequest request = ( HttpWebRequest ) HttpWebRequest .Create(url); using ( Stream stream = request.GetResponse().GetRespo ...Show All

  • Visual C# How to show all TODO items?

    When I open the "Task List -> Comments" not all TODO's from the project are shown. It seems that the IDE does only scan the open files. What do I have to do ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game/Component/Service Lifetimes?

    I'm having difficulty finding information on what the limitations and expected lifetimes of the Game, GameComponent, and GameService objects are. For example, my assumption and most documentation seems to confirm that the Game object would live for the lifetime of the game. The confusing part here is I've also come across documentation that suggests a GameService can live beyond the Game object. The OnGameChanged event for example. So under what circumstances would the Game object change and why Next are GameComponent objects. Most usage information I can find suggests that GameComponents are created and added to a Game during initialization and presumably exists for the lifetime of the Game. Is this necessary What if you wanted each level ...Show All

  • SQL Server Help in deleting row in gridview

    Nobody saw my post before so I thought I will make another post so that some one may respond to this I am having problem with deleting row in a gridview which is populated from sql database and so the row that is deleted needs to be deleted from the database My problem is I dont know how to identify the particular whose delete button has been clicked and also furtherly deleting that particular row from the database through a store procedure. I got 10 gridview to work based upon this code if anybody has anyideas please share with me so that I can complete my project on time and also I can have further questions for all of you intelegent people Thanks guys You really want to post this in ASP.Net forum. Basically, you ...Show All

  • Visual Studio Team System UsePropertiesWhereAppropriate guideline

    I'm sorry if this has been discussed before. I didn't find anything in the forum. The UsePropertiesWhereAppropriate (CA1024) says "Properties should be used instead of Get/Set methods in most situations. Methods are preferable to properties in the following situations: the operation is a conversion, is expensive or has an observable side-effect; the order of execution is important; calling the member twice in succession creates different results; a member is static but returns a mutable value; or the member returns an array." Shouldn't Get methods that may throw exceptions also be an exception to this rule It feels a little weird to catch exceptions from get properties. /Andreas ...Show All

  • Software Development for Windows Vista howto use OCSP responder for Longhorn

    Hi, I think I have the OCSP responder installed in Longhorn (5384) because "ocsp" appears next to CertSrv in the list of IIS applications. I just dont know how to use/test it. If I browse to it I get an error 500. Cant find any documentation about it either. Regards, Simon. Hi, don’t know if it’s still important...it’s quite a long time ago...but maybe it will help other guys... http://technet2.microsoft.com/windowsserver2008/en/library/045d2a97-1bff-43bd-8dea-f2df7e270e1f1033.mspx mfr=true regards florian ...Show All

  • .NET Development How to Fill a OleDbDataAdapter with a DataSet

    Hi, I have a Connection to a Access DB, In the DB is a Query that I need to be displayed on a DataGrid from a Dataset. OleDbConnection OleConn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=./MyAccessDB.mdb); OleDbCommand OleComm = new OleDbCommand("SuppliersCliamQuery", OleConn); OleComm.Connection = OleConn; OleComm.CommandType = CommandType.Text; OleComm.CommandText = "SELECT * FROM SuppliersCliamQuery WHERE ClaimNumber = '#23XP'"; DataSet ds = new DataSet(); OleDbDataAdapter myReader = new OleDbDataAdapter(OleComm); myReader.Fill(ds); My Current Query in Access look like this: ClaimNumber ItemDetailsFromClient #12BX P3445 ...Show All

  • Visual C# Using Enum as Index

    If I have an enum such as public enum Test { One = 1, Two, Three } I want to be able to add a value based on the enumerated type such as: MyValue[Test.One] = 17; I would also like to keep ot strongly typesd so MyValue[1] = 17; is invalid. Is this possible within C# OmegaMan, Could I change the dictionary entry to have the enumeration as the key public enum Enumbers { one = 1, next = 12, final = 100 }; public static void ENumber() { Dictionary< Enumbers , int > holdings = new Dictionary< Enumbers , int >(); Would there be any benefits from doing it this way Or are there disadvantages ...Show All

  • Visual Studio Team System How can i fill into a drop down list all the Work Item of a specific type?

    Hi to all, I would like to know if is possible to create a drop down list, in the form of my Custom Work Item, where are filled all the Work Item of a specific type, for example Milestone, without using Custom Control. Thank you. I would hate to see how large that list would get. I'm curious to test and see if it craps out at a specified length not to mention with even a few hundred items in it how would a person ever find anything. Yuck. But doable except for my first noted concern... how big can that list get ...Show All

  • SQL Server YTD with multiple time hierarchies

    Hi, I want to create a ytd (and much more) as calculated members of the special attribute (TimeView) in the Time Dimension. I know how to to this with a single Hierarchie referencing in the calculation, but we want to provide multiple hierachies with differnt levels and i want to have the calculation working well with all the hierarchies. Hierarchies: H1: year - quarter - month - day H2: year - quarter - week - day H3: hour H4: year - weekday - day H5: year - month - day and so on and i want ot have an hierarchie "Timeview" with default member "point in time" and "YTD" where YTD is calculated - but should work with hierarchies H1, H2, H4, H5. Is there any way to make the calculation hierarchie independed Than ...Show All

  • SQL Server Login failure - may have resulted from a corrupted restore

    Hallo I have a bit of a problem I haven't come across before. I was testing some restore code using smo, when the restore process got corrupted. Now I cannot log into that database file. Whenever I try and connect to it, I get a login error. Connections to this database file previoulsy worked very well. I do not get login errors for databases with different names, or when using the same database file on another computer. There must be some data stored somewhere that is causing this. I have removed the database file and reloaded it, but to no avail. Any insight into this would be appreciated Part 2 to the above I've just discovered that this machine has SQL server 2005 studio . So I can at ...Show All

  • Visual Studio Crystal Report viewer XI Dblclicked event

    Hi, How i can receive the Dblclicked event occurs when an object is double clicked in Crystal Report viewer XI like Crystal Report viewer 8.5 i'm using visual studio dot net 2005 C# any one have idea to help me plz send to me at bahaa_sa5@hotmail.com thankx ...Show All

  • Visual Studio Modify WCF Guidance Package

    I need to modify some custom pages in WCF service factory. I installed a copy of service factory code from the installer in sourcecode directory. From other posts in this forum, I understand that I need to change the GUID and manifest file. This may be a stupid question, but do I still need to change the GUID in WCF Guidance Package.xml It looks like the name there is already changed to "CustomWCFGuidancePackage". And besides that, anything else I need to change I just want to make sure my custom package won't corrupt anything in the original one. Thanks! Thanks for the link. I read from Don Smith's blog about recipe runner and he confirmed on Service Factory's forum that it will be available ...Show All

  • Audio and Video Development HDiSim currentDisplayMode

    It appears that HDiSim has the currentDisplayMode set to Player.DISPLAY_NONE by default. If I put this logic branch in my onLoad function, the HDiSim will fall into it: if (Player.currentDisplayMode == Player.DISPLAY_NONE) { } I'm building Comp5 for the forum. One of the requirements is display detection; so for instance you can start playing the audio on start if the device is an audio only player, or is not hooked up to a display. The compilation is complete (showed it to the Toshiba guys yesterday) except for display detection (3 line of code). So actually, the fact that HDiSim is set to DISPLAY_NONE works in this case for testing purposes :) I just didn't expect that so I posted the question. I have no idea if we'll be able to ...Show All

©2008 Software Development Network