afra's Q&A profile
Visual Studio Express Editions Setting the text for a tooltip where the object that it is a tooltip for has changed its value
I've got 4 linklabels, when I click on each of them, their value changes. When I hover my mouse over any of the linklabels, my tooltip appears. For each linklabel the value of the tooltip is different. Visual Basic Express Edition 2005 refers to this as "ToolTip on tltp_name". The problem is that, once any of the linklabels' values have changed, when I hover my mouse over them, the previous tooltip shows. I want& ...Show All
SQL Server PROBLEM: Grouping tasks: Connections disappear ?
Guys, anyone seen this before I've just finished me lovely big package.. decided to tidy it up and make it look nice... (when will I ever learn ) So I selected a few tasks, right clicked and selected "group". Named the group..... And now all the connectors between the tasks in the group have disappeared.... tried ungrouping.. still not there... The package still runs fine... the tasks are executed in the right sequence a ...Show All
Visual Studio Tools for Office MS Access opening exclusivly
Hi, I am opening an Access DB from my VB.NET application to print a report. The problem is that it opens exclusivly and when then remains locked. How can I open the DB with out locking it or how do I unlock th db when finished. The DB is on a server and I am using VBA code OpenCurrentDatabase(Filename:=DB Path, Exclusive:=False). Any Ideas Thanks Mike Thanks for the help Mike. I solved the problem by adding a ...Show All
Visual FoxPro deployment, building exe problem
OK, this is the third round. I still cannot run an exec file. I cannot build it properly. When I issue (in the Command Window) BUILD EXE the intellisense prompt appears with my app name. So, I accept the rest of the clause as default. Until today I could generate .exe with no problem but had problem getting it started. Today finally for reason I cannot explain an error appeared during BUILD: Unable to find Unknown ARR . Jus ...Show All
Windows Forms Monitoring arrow keys events
I'm building an texteditor and i want to now how i can monitor if a user changes the position of the cursor with the arrow keys. How can i solve this. I'm using Visual c++ express edition 2005 and created the project as a CLR form project Setting e.Handled to true will work UNLESS you are subclassing TextBox, in which case it will not work. So you would have to intercept the message sooner, for example by overrid ...Show All
Visual C# Label over picturebox
Ok, Im creating a label at runtime in a button_click event. Now the problem is, its not showing up, at all. And im thinking its because I need it to appear over a picture box. Because in my program, the form has a background image, and on the form there is a picture box displaying another picture. Is the reason why its not showing up, because of the picture box. I guess another question I should be asking is how do I make the label appear in fro ...Show All
Visual Studio Team System Can we switch licenses between VS 2005 Team Editions?
Hello all! Because we are a Microsoft Certified Partner with the ISV compentency that gives us the VS 2005 Team Edition for Software Developers + MSDN Premium subscription Which is great but...that gives us 5 licenses for the VS 2005 Team Edition for Software Developers and an additional 5 licenses (for a total of 10 licenses) because we are ISV but is it only for that particular product or can we use some for the Testers product ...Show All
.NET Development Thread Safety of Generic Queue
I need to use a System.Collections.Generic.Queue in a multi-threaded application and I am confused by the description in the documentation. The documentation says: Thread Safety Public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe. A Queue can support multiple readers concurrently, as long as the collection is not modified. Even so, enumerating t ...Show All
.NET Development SqlDataAdapter Update Method Returns an Error when a where clause is added to the Select query
I'm using .Net 2.0 and Visual Basic 2005 trying to update a SQL2005 Database. I have created a SqlDataAdapter with a Command builder object in my code. If I set the Select Command to a Select Statement that doesn't contain a where clause to filter the table I'm querying then after I've modified the table the DataAdapter.Update(myDataSet) method works correctly. But if I filter the table I'm querying by adding a where claus ...Show All
Visual Studio Team System IDE Attempted to read or write protected memory
I am seeing these errors frequently with VS 2005 RC1. I do not recognize any pattern that causes the errors, but I am going to guess that it is somehow related to aborted a debugging session on a webtest because that is what I was just now doing when I got the errors. --------------------------- Microsoft Visual Studio --------------------------- Attempted to read or write protected memory. This is often an indication that other memory is corrup ...Show All
Visual Studio Team System Migrate work items from Beta 2 to Beta 3?
Ok, first of all let me state clearly for the record. I fully realize that MSFT does not officially support work item migration from Beta 2 to Beta 3. I also realize Beta 2 did not have a GO-LIVE license with it, so I am officially on my own on this one. Having said that, "un-officially" is there anything I can do to half-way get this to work When my team moved from Beta 1 Refresh -> Beta 2, we exported all of our work item ...Show All
Visual C++ fatal error C1001: An internal error has occurred in the compiler. (Release Mode Only)
Hi Folks, I got some code that works fine in Debug-Mode but causes a compiler error in Release-Mode: const float fx = pfx<0 0:(pfx>width-1 width-1:pfx), fy = pfy<0 0:(pfy>height-1 height-1:pfy); const unsigned int x = ( unsigned int )fx; const unsigned int px = ( int )x-1>=0 x-1:0, nx = x+1<width x+1:width-1, ax = nx+1<width nx+1:width-1; const unsigned int y = ( unsigned int )fy, py = ( int )y- ...Show All
Visual Basic Ms Access 2000
Created application in MS Access 2000; receiving the following Error Microsoft Visual Basic Run-time Error '13: Type Mismatch Error is highlite Private Sub Form_Current() ' Update the caption and fill in the list of options. Me.Caption = Nz(Me![ItemText], "") FillOptions End Sub Private Sub FillOptions() ' Fill in the options for this switchboard page. ' The number of buttons on the form. Const conNum ...Show All
Visual Studio Express Editions "Unable to cast COM object of type 'System.__ComObject'
I get this error when trying to create a new data source in Visual Studio 2005 Express and SQL Server 2005 Express. Does anyone know how to fix this "Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.VisualStudio.OLE.Interop.IServiceProvider'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{6D5140C1-7436-11CE-8034-00AA006009FA}' failed du ...Show All
Windows Forms Hiding column in datagrid
I have a datagrid (master-detail) which shows the details of a specified lognr. In the grid I want to hide the column 'lognr', because I can see that elsewhere. I can hide all columns, accept that one, i think it's because 'lognr' is the key for the relation between two tables. This is how I do it: this might work dataGridViewDescriptions.Columns[ "Lognr" ].width = 0 Remco ...Show All
