RoninBraenk's Q&A profile
Visual Studio Team System Unassociate mpp with a team project
Once an mpp is associated with a team project how is it unassociated with a team project Not sure I understand your question. Why do you want to unassociate an mpp from the team project Are you asking how you can disconnect the mpp from a TFS server and project Thanks! ...Show All
Visual Basic Add New Data Source for My SQL doesn't work
I have tried also installing and using the ODBC driver version 3.51 and the My SQL driver 3.1.8. None of these work. What do I have to do to add a new MY SQL data source Michael I was told by two different Microsoft employees that Visual Studio 2005 Express Edition was the right version of Visual Studio 2005 for me to use for all of my needs including access to ODBC and MySQL data. They emailed me a link with a comparison of a ...Show All
Visual Studio Express Editions Totally new to programming and VB. Any suggestions for tutorials???
i'm downloading vb express 2005 as I type. I'm keen to learn a bit of programming but cant seem to find any sites that give any vb express 2005 tutorials. does anybody know of any or is it too early/new for this also, would tutorials for older versions of VB still be valid with the 2005 version i see it does have a screensaver tutorial - i'm looking for other tutorials at this stage. The post says ...Show All
SQL Server Nonclustered, Nonunique Partition Aligned Index fails with Partion Switch
This is the structure of the database: CREATE TABLE [dbo] . [APRSWx] ( [CallsignSSID] [varchar] ( 9 ) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL, [ReportTime] [datetime] NOT NULL, [WindDir] [smallint] NULL, [WindSpeed] [smallint] NULL, [GustSpeed] [smallint] NULL, [Temperature] [smallint] NULL, [HourRain] [decimal] ( 4 , 2 ) NULL, [DayRain] [decimal] ( 6 , 2 ) NULL, [MidnightRain] [decimal] ( 6 , 2 ) NULL, ...Show All
Windows Forms devlopment tricks
New developer here... working of my first critter for the Terrarium. It's 'kinda annoying to start Terrarium in ecosystem mode, then switch to a local world (either 'new' or 'saved') before testing my animal. So I'm wondering... are there some command-line&n ...Show All
SQL Server How To Avoid Table Scan
Hello All, Is their any way I can avoid a Table Scan by modifying the follow WHERE clause WHERE tbl_mis_Dashboard.loan_active_flg = 1 AND [tbl_mis_Dashboard].[loan_create_dt] between DATEADD(dd, DATEDIFF(dd,0,dateadd(mm,-13,getdate())), 0) And getdate() The field loan_create_dt is indexed on the table tbl_mis_Dashboard. The query returns approximately 256K records which is appropriate and necessary. Thanks all, Orlanzo ...Show All
.NET Development Returning a custom class object
This is my first time creating a web service ... so I'm hoping this is an easy question Basically, I have a normal windows class (call it myNamespace.myService). This class has a method that returns a serializable class object (call it myNamespace.myClass). Now, I've written a seperate web service that's really just a thin wrapper around myNamespace.myService. (I call the web method, and behind the scenes it calls into myNamespace.my ...Show All
SQL Server Using CASE statement within GROUP BY
Just a simple question, is it possible to somehow assign an alias to a case statement so that it does not need to be repeated within both the SELECT and GROUP BY clause For example... SELECT CASE WHEN Order_Date IS NULL THEN 'Unknown' WHEN DATEDIFF(mm,Order_Date, GETDATE()) BETWEEN 0 AND 6 THEN 'Recent' WHEN DATEDIFF(mm,Order_Date, GETDATE()) BETWEEN 6 AND 18 THEN 'Old' ELSE 'Ancient' END AS Recency, count(*) FROM Ord ...Show All
Visual Studio Clickonce and ReportViewer
When user try to run the winform application I deployed using clickonce thru http, they keep getting an error saying “could not load file Microsoft.ReportViewer.ProcessingObjectModel”. Within the application, I do import the namespace Microsoft.Reporting.Winforms to support local hosted report parameters. I make sure both assemblies (Microsoft.ReportViewer.Common and Microsoft.ReportViewer.WinForms) are included, even as local cop ...Show All
Visual Studio Team System VSTS Licensing Outrageousness and Issues…
I have seen the LP (List Price) and "New" MSDN Premium Subscription thing and don't believe the substantial increase in cost from the point of view of a small team of developers. Perhaps I don't understand the licensing for non-ms-partners meaning average joe's developers team that will like to work (and will benefit greatly) with VSTS. Actually from the point of view of government projects that our group leads it is outrageous ...Show All
Windows Forms Location advice for a Custom Collection Class
Hello, I have a custom collection class, which I plan to bind to a datagrid. The datagrid will be used to present the end user with a list of customers stored in the system. The datagrid will be read-only because its function is sim ...Show All
Visual Studio Express Editions fstream with Japanese filenames?
Hi I'm currently making a studylist program for learning Japanese. I'm using an fstream reader to read and open my studylists and it works fine when the filename is in English, however when the filename is in Japanese, or any directory in the path is Japanese the fstream reader returns a null string. (actually it returns nothing which I'm assuming is null). This is strange because reading the studylists (with Japanese entires) is fine, ...Show All
Visual Studio Express Editions animate window
hi guyz, i am trying to call animatewindow call from user32.dll.. and it was all correct as it is, it is written as i had seen in one of the web sites. also i tried to find that method using apitextloader (winapi tool) but there is not a function by this name.. but it is there in online msdn winapi support , so what's the deal ,if it's compiling it's not showing any proper animation.. so if anybody can help it would be great ashish ...Show All
Visual Studio Express Editions Form menu problem
Hello people, I'm creating a form here on my Visual C++ Express, and after creating a menu and insert some options on it this happens when I try to save form.h: "Code Generation for property 'Items' failed. Error was: 'Could not load file or assembly 'Microsoft.VisualStudio.Design, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.' Does anyone had a simil ...Show All
Visual C++ Using UNICODE
HI Everyone, I'm new to C and I'm trying to use the UNICODE function so I can send UNICODE data to a device attached to COM4 instead of ASCII. I've defined UNICODE and_UNICODE and included tchar.h and I've also set the entry point as wWinMainCRTStartup. When I compile my code I get the error; Looks like your subsystem is set incorrectly. Are you trying to do a console app or a windows app If you meant to do a console app, change y ...Show All
