N Camp's Q&A profile
Windows Forms Toolbar
Dear, please if you can send me a link, or help me to do an dockable and floatable toolbar, in windows forms application. ...Show All
Visual Studio Team System Is RTM supported by latest online Installation Guide?
I've downloaded the latest Team Foundation installation guide from: http://www.microsoft.com/downloads/details.aspx familyid=E54BF6FF-026B-43A4-ADE4-A690388F310E&displaylang=en (File TFSInstall-v60317.chm) Here is a quote from the "Start Here to Upgrade" section: " To upgrade from Beta 3 Refresh to the release candidate, download the upgrade package from the Microsoft Downloads Center ( http://go.microsoft.com/fwlink/ LinkID=60341 ) and follow the upgrade instructions for Team Foundation servers. For new installations, follow the instructions in this guide." Note how it talks about the "release candidate ...Show All
Visual Studio Express Editions ListView sorting question
Hi I have a ListView control called HSlist on a form which has 3 columns. The adding data seems to work OK, but the sorting is weird to say the least. Initially, I thought that the list would be sorted on the contents in the first column, so I added to the ListView with the Item containing the data that I wanted the list to be sorted on (numerical). Then I found that the list was being sorted on the second column (strings), so I swapped the adding routine so that the numerical data was now in the second column - the list now was being sorted on the first column (strings). What I want, is either to be able to dictate which column the ...Show All
Visual Studio Team System How to: Customize the build reports
Hey there, I already know how to add lines in the build log file. But now I need to add information to the report that ends up on the project portal. I have read the SDK part about extending the Team Foundation Reporting Warehouse but I'm not sure this is what I'm looking for... Any pointers Thanks!!! If you want to add information that's already in the warehouse to the report, then you can just edit the report to include that. For example, if you want to add the number of bugs found in a build (and your Bug work item type uses the Found In Build field), then add the Cumulative Count measure, sliced by Found In.Build. I beli ...Show All
Visual C++ Embedding an edit control into a tab control
I want to embed four different edit controls into four different tabs. How do I do that Please include more details What technology are you using What have you tried so far yourself Thanks, Ayman Shoukry VC++ Team ...Show All
Windows Forms Creating and setting an enviroment variable
Hello! I have a setup project that I am currently creating and would like to have it set an enviroment variable to the path where the user installed my files. Is this possible How would I go about it Also is there a site or anything anyone may be able to direct me to on learning all the stuff I can do with Setup projects I can't seem to find a whole lot of info on creating them. Thanks! Well I've figured out part of my question (I can add an enviroment variable through the regisrty) so I am just doing that. The second part of my question still remains foggy to me, is there a way to set that registr ...Show All
Windows Forms User Control Causing VS2005 to crash
I created a custom user control and when I try and drag and drop it into a windows form visual studio 2005 crashes and I can't debug it. Any ideas on why it would do that The normal thing to cause this is a stack overflow. Check your code for cases where you are missing a "this"/"me"/"base" or "MyBase" when attempting to return a value. There are a few threads in this forum on stack overflow and why it causes VS to crash. -mark Program Manager Microsoft This post is provided "as-is" ...Show All
SQL Server Triggering Data Driven Subscription
Hi, If we want to trigger data driven subscription on an event, is there any way of doing it in 2005 Thanks Manish ...Show All
Visual C++ Scroll limitation issue
hi, I have recently taken over the a project for someone, one of the issues we have come across is that you cant view an entire document, in a window with scroll bars if its really big. I track this problem down to the ranges on the scroll bars. Once the range of the scroll bar exceeds 32000 pixels, it is set, by my ex-colleague back to 32000. So when you view a document, depending on the zoom factor you may only see a fraction of the document (until you let the zoom, zoom out to say 25% and you can see the whole document but its obviously too smal. So easy fix I thought just not have that reset in there...wron ...Show All
.NET Development Can I open an Access database from vb .net if the mdb file is opened.
if I try to use the following connectstring "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\cse1\src\test.mdb;Mode=Share Deny None;User Id=admin;Password=;" I get the following error "The Microsoft Jet database engine cannot open the file 'test.mdb'. It is already opened exclusively by another user, or you need permission to view its data." I was assuming that mode-Share Deny None would open the database in read-only mode, since I have to just display data and not do any updates. thanks. Did you add a reference to Microsoft Access 11.0 object library I'm trying to do the same thing as you. Currently i'm ...Show All
Windows Forms TextBox typing vs. programatic change
I have one TextBox that gets filled programatically based on 3 other TextBoxes. If I make a change to any one of the 3 the main TextBox.Text gets re-filled based on the changes. Now, if I don't tab through the main TextBox before I click Save, the main TextBox gets reset to its original value on the call to EndCurrentEdit(). If I do tab through&nb ...Show All
Visual Basic Multiple Clicks on One Button
Hi, I have a button that i would like to have open and close another form, I have tried to figure it out on my own but i am new to this and can only make it do one or the other while still working. Could anyone help Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load cbGo.Text = "Show" End Sub Private Sub cbGo_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles cbGo.Click If cbGo.Text = "Show" Then cbGo.Text = "Disappear" Form2.Show() Else cbGo.Text = "Show" Form2.Hide() End If End Sub ...Show All
Visual Studio 2008 (Pre-release) Deployment WCF
It’s possible have a services of wcf in one computer and the bussiness layer that wcf use in another computer I would implement this ( before wcf ) with .Net Remoting. Because you have wcf now I suggest you to use netTcpBinding for communication betwen sevice that you expose and business layer on another machine. The service itself could expose any binding like, baseHttpBinding or wsHttpBinding. I suppose I didn't miss the point, because I think that you can not configure wcf host to use assemblies on another machines. Indigo Cowboy ...Show All
SQL Server Discard Rows in a flat file
Say I have a flat file with the form FHRxxxxxxxxxxxxxxxxxxxxx SHR1xxxxxxxxxxxxxxxxxxxx DataRow DataRow STR1xxxxxxxxxxxxxxxxxxxx SHR2xxxxxxxxxxxxxxxxxxxx DataRow DataRow DataRow STR2xxxxxxxxxxxxxxxxxxxx FTRxxxxxxxxxxxxxxxxxxxxx Where FHR=File Header, SHR=Section Header, STR=Section Trailer & FTR=File Trailer How can I discard all the header and trailer rows I have the manager defined as ragged right and have defined the fixed length columns. I know I can tell the flat file connection manager to discard n header records. I can also tell it to redirect rows which are truncated to "nowhere" but some headers & trailers still get through ...Show All
Visual Basic How to update timestamp - Please help
Hello All, I am new to VB.NET (was a VB 6 programmer for the last 8 years). In my database, I have a CreatedBy, CreatedTime field in my "Transaction" table. CreatedBy should be updated with the currently logged on UserID. CreatedTime field should be updated just before the user clicks on "Save". I simply dragged and dropped the "data table" on the form and VB.NET created the grid and also generated all the code for me [Great feature]. However, I do not want the user to type in the value for "UserID" or "Created Time". Instead I would like to do that behind the scenes just before the data is ...Show All
