Lentilbean's Q&A profile
Software Development for Windows Vista Where to get July CTP of .NET Framework 3.0 and Windows Workflow Foundation (WF) RC4
The relevant links for the July CTP of .NET Framework 3.0 and the associated VS Extensions for Window Workflow Foundation (WF) RC4 are below: .NET Framework 3.0 July CTP from here . VS Extensions for WF RC4 from here . Windows SDK for July CTP from here . If you are just starting with WF you should install this build. There are no new features or API changes between RC2 and RC4, only some bug fixes. Before you ask, I don’t have a list. I'm really confused with all the RC versions and the Beta versions, and the WinFX and .NET 3.0 stuff. what do I exactly need to develop WF applications what do I exactly need to run WF applications I developed workflows as well as a workflow Runtime Ser ...Show All
.NET Development Get signal strength in C#?
Is there a way to retreive the wireless signal strength Thanks, Hi Yes, using WMI The following posts show how: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=467621&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=449082&SiteID=1 Michael ...Show All
Visual Basic MySQL
Using MySQL to store my information on my server and I am writing a program to read/write to it. I am using an example on the web click here to setup my Login screen. Im having problems with the Imports MySql.Data.MySqlClient . I have gone to MySQL.com and downloaded the connector but I can't seem to get things working right. What am I doing wrong I clicked on Data and then Add New Data Source. From there I used the userid and password I had created for the specific database (schemea) I am using. VB does the coding behind the scenes. ...Show All
SQL Server Trouble with DataSource and Sharepoint Integration
I have setup Sharepoint Integration and built a report that connects to a SSAS cube to present data. The report was build in VS2005 before I installed SQL SP2 and the Sharepoint Add-in. I am able to upload the report (rdl) and the datasource (rds) , but when I try to view the report I get the following error. The report server cannot process the report. The data source connection information has been deleted. (rsInvalidDataSourceReference). The report and the datasource are in the same folder in a document library. When I try to deploy the reports using VS2005 I get a reporting services prompt when the deploy starts. Tried a couple of account to no avail. One thing that I noticed is that the datasource icon is a blank page vs t ...Show All
SQL Server Ad hoc updates to system catalogs are not allowed.
in SQLServer2005 how can I allow update system catalogs (by mouseclick) sp_configure 'allow updates' , 1 - works, but I get the message Msg 259, Level 16, State 1, Line 1 Ad hoc updates to system catalogs are not allowed. direct updates to the system tables were never supported in SQL Server. But it looks like, in SQL 2005 they are not even ALLOWED and that is a wrong move from Microsoft. Though not supported, sometimes you can't get away without updating system tables. For ex., try moving a log shipped database from one server to another, without losing it's synchronization. ...Show All
Visual C++ atof rounding error
Hello, While using visual studio 2005 I noticed an odd rounding error where 0.0355 gets converted to 0.0349 when atof("0.0355") * 100000.0 is done. If you run the code below you will see it printed out. Any help / ideas would be appreciated. string strList[2] = { ".099999", ".0355" }; for ( int i=0; i<2; i++){ string strVal = strList [ i ]; double fVal = atof(strVal.c_str()); long lValx10 = ( long ) (fVal * 10.0); long lValx100 = ( long ) (fVal * 100.0); long lValx1000 = ( long ) (fVal * 1000.0); long lValx10000 = ( long ) (fVal * 10000.0); long lValx100000 = ( long ) (fVal * 100000.0); cout.setf(std::ios::showpoint | std::ios::showpos); ...Show All
Visual Studio Team System TFS HandleComException error
I'm trying to programmatically create a bug in TFS like so: try { TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer( "http://TFS:8080" ); WITracking.Client.WorkItemStore store = (WITracking.Client.WorkItemStore)tfs.GetService( typeof (WITracking.Client.WorkItemStore)); //create WI of type bug WITracking.Client.WorkItemType workItemType = store.Projects[ "ROI" ].WorkItemTypes[ "bug" ]; WITracking.Client.WorkItem workItem = new WITracking.Client.WorkItem(workItemType); workItem.Title = textBox1.Text; workItem.Fields[ "System.AssignedTo" ].Value = "Kawatana" ; workItem.Fields[ "Microsoft.VSTS.Common.Priority" ].Value = 1; ArrayList list = workItem. ...Show All
Visual C# help needed on C#
hey guys can anyone tell me some good book or can send me an e-book for visual C#... i have basic fundaes but want to know the depth of it.... thanks in advance... my id is hula.iitm{at}GmAiLdotCom.... Well, This thread is helpful to you: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1166427&SiteID=1 Thanks ...Show All
Visual Studio 2008 (Pre-release) Rotating a grid
Hello I want to rotate a grid by, for egxample, 45 degrees. How it could be done programically Thanks in advance. To make it rotate 45 degrees around the center you would just do: myGrid.LayoutTransform = new RotateTransform(45, myGrid.Width / 2, myGrid.Height / 2); For more details, check out this section of the SDK . HTH, Drew ...Show All
Visual Studio Express Editions Getting started with C++ Express - Please help!
I've been using VC++ 6.0 for a long, long time. The main reason I want to change is the many bugs in 6.0 having to do with templates. Tonight I downloaded VC++ 2005 Express and the SDK. I tried to follow all the directions for integrating the SDK, but it was very confusing. It would be nice if there were a start-to-finish set of instructions that included exactly what buttons to push to get the right version of the SDK. Anyway, here's where I am: I created a tiny console application. I don't know if it's native or managed. (How do you choose I want native.) I've stripped it down to #include <windows.h> followed by "int main() {return 0;}". The "Release" version compiles and runs. But the "Debug" version ...Show All
Windows Forms Filtering data listed in a combobox in a datagridview
hi I have two combox (drop down box) in my datagridview. Lets name them combo1 and combo2. When an user selects a specific data from combo1, I want to filter the data that will be listed in combo2. Can someone help please Thanks in advance You can attach event-handlers to editing-control events in a handler for the DataGridView.EditingControlShowing event. There is a code snippet in the DataGridViewComboBoxEditingControl class overview topic. ...Show All
Visual Studio Tools for Office Help! 0x800a16c1 - Object has been deleted
Hi I'm working with VSTO 2005, Word Document, C#. I've done a word document where you can add lists with items inside a table. So everytime i want to a add a new list,, the C# code gets the range of a bookmark where i want to work, then it insert a row in the table, then add the xmlnodes and then add the info written by the user in an Actions Pane. the document works fine when i build it from VSTO. so i created the installer and the security policies and all that stuff. When i open the document for the first time, it works great! i create new lists with the actions pane, and everything is ok. So i save the document with another name. Then i open the new document, and when i try to insert a new list through the actions ...Show All
SQL Server "Unicode conversion failed"
Dear all I face a strange error when i execute the SSIS package on the server it stoped telling that there is an error Code: 0xC0202009 Source: AvayaCalls Fill AvayaCalls Brok-H-Reports [56] Description: An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Unicode conversion failed". but when i execute it on visual studio it has no errors or warnings knowing that i transfer data from server to server but the two tables are the same. ...Show All
Visual Studio Team System How do you relate use cases in team foundation server?
Hello, I know that out there are many people using TFS, but I want to klnow how to use use cases, In my company, we make requirements in Enterprise ARchitects(sparx systems) and use cases too, and we make traceability between both, but there is no such work item called use case on tfs. I would like to know from the experience of users navigating this forums, how are you using this. I have two ideas. 1. Customize the process template to create a new work item called use cases, but it wouldnt have graphics. 2. Create the requirment and upload the use cases files. I want to hear ideas from somebody else. Thanks With the Agile template (if that's what you're using), the Scenario work item is *generally* accep ...Show All
Windows Forms OnPaint Overflow Exception
Hi I have a form with some controls, in it, most of them are labels, and a panel for displaying video and one of label is blinking using timer. sometimes i got an Overflow exception when a program is started and sometimes when label is blinking. this exception is random and not always thrown. when exception comes, it comes with quit and continue, and have detials of the stack trace, when continued, the one control which is mentioned in the stack trace are turned to red cross. this is happening with two three controls. After the rectangle is filled with the background color it checks the results of the call to GDI+. Here's the pseudo code: if (status is error) { if (status is Win32 error and !(running from remote shell)) { switch( ...Show All
