Raja Pratap's Q&A profile
Visual Studio Team System App Tier - Error 32000 - setupwarehouse.log
I cannot install Application Tier (Dual-Server deployment). Everything made exactly like described in the newest Installation Guide (April). Clean installation on Virtual PC. Tested platforms: Polish version of Windows Server 2003 Standard, English version of Windows Server 2003 Enterprise with SP1 - same error on both versions. At the end of the installation I still get the same error: Errorr 32000: The commandline '"C:\Program Files\Microsof ...Show All
Visual C++ use of __value as a variable name in unmanaged c++ code
Hi, I think I get a compiler error when defining a variable named __value, even in unmanaged code. For example: I create a new win32 console application project, and add a single file containing something like: void main () { int __value; } I get the errors: error C4980: '__value' : use of this keyword requires /clr:oldSyntax command line option error C2059: syntax error : '__value' My guess is that this is related to th ...Show All
Visual C++ vc++8.0 bug: access violation upon call of any CImageList methods
I have sucessfully imported and compiled a complex MFC 6.0 project from vc++6.0 into vc++ 8.0 (MFC 8.0). It contains several subprojects (libs and dlls). In vc++ 6.0 those project linked MFC6.0 statically and after I imported it to vc++ 8.0 I set the linkage of MFC8.0 to "shared". However when I try to compile and link the project in vc++ 8.0 in release mode (debugmode works fine) I get an acess violation in afxcomctl32.inl. This happnes w ...Show All
Visual Studio Call a recipe
Is it possible to programatically execute a recipe If it is, how can i do it I need to execute a recipe defined in the config file from an action I implemented... Thanks in advance... There is a way to execute recipes programmatically, but not from within another recipe currently executing in the same guidance package (i.e. via an action). You can execute a recipe in another package, though. Would that work ...Show All
SQL Server using distinct on one column only
I have a table that contains 5 or 6 columns. (plantid, commonName, scientificName, planttype, etc) what I am wanting to do is create a table of all the plants with distinct scientificNames. but I am wanting to display the commonName, scientificName, and planttype. I figured using the distinct operator would work, but is seems as if it looks at the combination of all 3 rows instead of being distinct on only one row. Basically I am wanting to b ...Show All
Visual Basic Hello Help with setup project
Hi i need help with setutp project. I have added a new dialog with CheckboxA in the user interface in the setup project so now i want if the user checked the box then a folder named Samples in the application folder is installed and if the user doesnt check the box then the setup doesnt install this folder.. Thanks a lot Windows Installer does not support conditional shortcuts. The only way you can make a shortcut condition ...Show All
Visual Studio Team System Problem in changing the System.AreaPath Field in Work Item.
Hi, We customized the MSF Agile Template according to our project requirement. Now when we create a new Work Item we now want to make the "Area Path" field to accept the values from given by the user who is going to create the work item. But the problem is that it is by default displaying the project name in that field and if the user want's to changes the value it is not allowing him to do. We placed the following statm ...Show All
Visual Studio Team System BetaExperience
I'm trying to sighn up for the visuall studio beta 2 experiance, but when I submitted my detail, I recieved a confirmation email, when I verified and clicked next I got a page saying "We’re sorry, but we were unable to service your request. You may wish to choose from the links below for information about Microsoft products and services." any idea why this is, and how I can sighn up Can you let us know if you co ...Show All
Visual Basic Copy and Paste in Datagrid
Hello Fellow Developers I am working on a component of my project which has a datagrid. This is a windows application. One requirement I have been given is the end user would like to copy and row and paste it into another row similar to what we can do in Excel. The users have been used to using excel and now they would like to do same type of thing in here. I tried several diff ways of doing it but did not work. I am looking for so ...Show All
Windows Forms Can't navigate using bindingcontext ... position
Hi, this should be easy but can't get it to work. I'm trying to move to the next record with: Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me .Tbl_tabelTableAdapter.Fill( Me .Database1DataSet.tbl_tabel) End Sub So far it works, the first record is shown (detail view, no datagridview), but then: Private Sub Button1_Click( ByVal sender As Syste ...Show All
Windows Forms Bonehead question
I have a MDI Parent form. I just want to change the background color (it defaulted to a control and controltext). Why can't I change it I mean I can change the forecolor and backcolor properties, but they have no effect. &nb ...Show All
.NET Development Converting streams
I have a Stream which is Stream stream = httpWebResponse.GetResponseStream(); I need to convert this System.IO.Stream into System.IO.MemoryStream. How can I do that with C# 2003 The data that a server returns is an image. I would do byte [] data = webClient.DownloadData(uri); but for certain reasons I have to use HttpWebRequest/Response. Thank you. You can't convert it from one to the other .. you would read data from that stream into a ...Show All
Visual Basic Error: namespace and Public declarations
I am a new user of VS 2005 Beta 2, and have a relatively little experience with the indepth parts of Visual Basic. I was transferring my grade twelve computer science project from VB6 to VS2005 when I encountered a problem that said, and I quote, Statement is not valid in a namespace. This error was generated when I typed: Public intCtr As Integer in the General Declarations section of a standard module. Like I said earlier, I have ...Show All
.NET Development Question on Asp:Repeater
Hi, I have an product catalog page for online shopping. This is the sample of the DataSet ID Name ThumbnailImage BigImage 1 Product A productA.jpg productA_big.jpg 2 &n ...Show All
Visual Basic Accessing the GDI+ from a class library
I'm new to VB.Net graphics, but I am trying to create a class to deal with graphics. However it does not seem possible to access the system.drawing from a class library. Does anyone know if this is intentional or how to access it. Thanks in advance JJRDK You have to add a reference to the System.Drawing assembly first. In the Solution Explorer, right-click on your project, select Add Reference and select the a ...Show All
