Joel Bennett's Q&A profile
Visual Basic Hiding Parent from the grid ??
Dear Team beside the parent in the grid there is a "+" if it is pressed the details will be shown At the top right of the caption there is 2 small buttons, 1 to goback to parent, 2 to hide parent HOW to make the grid shows only the details directly without doing this steps any idea Thank you very much i'm not sure exactly what control your using but f ...Show All
Visual Studio Team System beta2, personal website starter kit problem
downloaded latest team system beta 2 today, created new personal web starter project, when i attempt to create an administrator account here: http://localhost:1689/asp.netwebadminfiles/security/users/addUser.aspx no mater what i type, it continues to say "please enter a different password". you are instructed to create an admin account for your personal web site by the new starter project. ideas ...Show All
Visual Studio Team System Protocol violation - can I change how sensible the test shall be to protocol errors?
I get this error when running a test on a web page that I have no possibility to change: RequestFailed: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF Is it possible to configure how the test shall handle this so the test will not fail Sten, this sounds like a bug so I'm going to need some more info to track it down. What's the request like that's causing this error Are ...Show All
Visual Studio Web Form Reset Method
I'm trying to find the equivilant of the reset method on the Web forms report viewer. The problem that I run into is that I attempt to change the data and then refresh the local report but the reports contents don't refresh. On the window forms side I simply call the reset method. You can workaround this issue by instantiating a new instance of the viewer and swapping it for the one already on the we ...Show All
Visual C# Multifile Assemblies???
How do i add a static member using the class view...this static method should be named Add() that returns an int value and accepts two int parameters first and second Dpowers, Well, some people thinks that a college graduation is enough, some people think that any certification is a good thing. I think MCAD is a good certification for developers, maybe a MCSD certification is a better choice for software engineers 'cause it evolves a ...Show All
SQL Server Error on an Execute SQL Task
I am using an execute sql task as the last step in an SSIS package. The task has an insert statement in it that will be appending some transformed data to the end of a large table in our database. All tasks are executing correctly except for this last one. It is giving me the following error that I cannot puzzle out: Error: 0xC002F210 at LINPRM_Append, Execute SQL Task: Executing the query "INSERT INTO LINPRM SELECT * FROM ...Show All
Visual Basic VB 2005 API Call Problem
I am trying to make the following API call that worked in VB 2003. In VB 2005 I am receiving the following error: PInvokeStackImbalance was detected Message: A call to PInvoke function 'GetWindowData!GetWindowData.GetWindowData::GetWindow' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match ...Show All
Visual Studio Express Editions Events not receved
I communicate with a COM Server, everything works fine, until I receive this server fires an event. First, my application seems not to receve this event. When I toggle a breakpoint on the event handler, this breakpoint is shown, and I see that the event delivers the parameters, I expect. When I remove the breakpoint and continue my application, all following events are received as expected. My installation is Visual C# 2005 Micro ...Show All
Visual Basic Save and Load?
What I want to do is save the input from four txt boxes Name.txt Tel.txt Mob.txt Mail.txt After the input is saved I want to add new data and save again etc,etc. Then I need to load the information back again in to the relevant Txt boxes Name to Name.txt Tel to Tel.txt etc etc and scroll through forward and back to search for a paticular name. I am thinking it will have to be done with arrays but how to do it is the question. If this is a lot to ...Show All
Visual Studio Team System TF command line checkin
I am trying to update our old vss command line scripts to be used with Team Foundation Server. I have successfully tested the tf get , tf label and tf checkout commands. However when I run the tf checkin command it returns 'No files checked in' I am using this command line: tf checkin /comment:"Doing a new build" /override:"Build process commandline checkin" /noprompt On the screen I am seeing the check in policies that are not being meet (in y ...Show All
Windows Forms MDI child window cannot have main menu
Does it seem odd to anybody that a Form window having an MdiParent will actually have its main menu generated on the MdiParent's menu bar rather than itself Is there a way to have it render on the child window itself Li ...Show All
Visual Basic Help.
How do I create a grid of pictureboxes (25 x 25) on Visual Basic 2005 and auto-name them pbx(row)_(column) for the picture boxes It is to slow and hard to manually rename all 625 of them. Ok question answered, thanks. New question: OK, I ran into another problem. I want it be so that if I click the picture box with the person in it, you can move him by clicking on another tile. How do I do this (I tried (got from Dustin_H 's sample code) : ...Show All
Visual Studio New Item wizards in VS 2005
Hi, I am trying to write a wizard to add new item to VS 2005. I followed the instructions in the Walkthrough: Creating a Wizard in Dev Tools & Languages > VS > IDE > Customizing and Automating the Development Environment > Automation and Extensibility for Visual Studio > Creating Add-ins and Wizards, but I keep getting an error "Invalid at the Top Level of the Document" whenever choosing the new item I just added. ...Show All
Visual Studio Adding a new file to a project programatically
Hi, I would like to create a new form object and write it out as a new .CS file and then add it to the project Solution. Any ideas how can this be done Regards, Laadlaa. Hi, You need to use EnvDTE.Project.ProjectItems.AddFromTemplate, which requires the template of the form and the destination name. See the docs. If you don’t want to create the form from a VS template but creating it from scratch, then o ...Show All
Windows Forms ComboBox Changes in .NET 2.0
Hello Everybody i am using WinApp using .NET 2.0. for ComboBox there in no ListItem in .NET 2.0. I want to add Name, values to ComboBoxes manually, How to do this. any suggestions are appricated [Moved from C# Language -> Windows Forms] Jonathon's right, you can simply create you own ListItem class: public class ListItem { private string _Text; private string _Value; public ListItem( string text, string val ...Show All
