StephaneB's Q&A profile
Visual Studio Team System Right Management
Hi, Using TFS I have found multiple places one needs to apply rights to, in order to grant a user access to the various parts of the system. These are: 1) TFS - granting rights within Team Explorer 2) WSS - granting individual user rights within the portal site of the corresponding project (argh! no groups can be applied here) 3) Reporting-Service - ranting group-based rights using the /reports/ directory It would be a very smart thing if the ri ...Show All
Visual C++ DLL Compatibility?
I am converting an app from vc6 to vc8 (vs2005). I've got everything to compile fine, and most of the testing looks good. While system testing in Release mode, I get an occasional crash. The dialog box says "PCSMain.exe has generated errors and will be closed by Windows. You will need to restart the program. An error log is being created". Even though I have drwtsn turned on, I don't see any error logs being created. Even while ...Show All
Visual Studio Express Editions Error when running project
I get a 'Request failed.' error when running my project, exception details are as follows: ------------------ System.InvalidOperationException was unhandled Message="An error occurred creating the form. See Exception.InnerException for details. The error is: Request failed." Source="sgBrowser" StackTrace: at sgBRowser.My.MyProject.MyForms.Create__Instance__[T](T Instance) &nbs ...Show All
Visual Studio GAT on Visual Studio Release Candidate
Hello do you guys know when is there going to be a release of GAT that works on the VStudio release candidate distributed in PDC last week The framework is really cool and we are looking forward to use it but we need to know when you estimate a Release Candidate version to do our internal planning. Thanks Gabo I second that motion! I've got the NJ Code Camp coming up on Oct. 15th and would love to do a present ...Show All
Smart Device Development Icon in titlebar when minimized
Hello I want to add an icon to the titlebar that show the status of my program when it is minimzed. Is this possible, and if so, how First create an icon with icon editor and add to the resource file an icon statement ex: ID_ICON ICON "mymin.ico" then you can use the LoadImage and SendMessage to assing a small icon to a window hIcon=LoadImage(hInst,MAKEINTRESOURCE(ID_ICON),IMAGE_ICON,16,16,0) ...Show All
SQL Server Problem while deploying Report on server
Deploying to http://localhost/ReportServer Deploying data source '/Report Project1/cnt_SDS_REQUEST'. The Report Server Web Service is unable to access secure information in the report server. Please verify that the WebServiceAccount is specified correctly in the report server config file. Are you reusing an existing report server database You get this error when the report server does not have access to the symmetric key that we use to ...Show All
Smart Device Development Transparent application Bar on Today Screen
Hi experts, I am trying to launch my application from my today screen and I have done that with the help of http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/TodayScrn.asp Now I want my application bar on Today Screen as TRANSPARENT , Do any one has any clue or any idea about how to go. Since the my application bar content is HTML so how to make it transparent. I am not a eVC GUY at all, Any solution thro ...Show All
Visual Studio ReportViewer: An error ocurred during printing
I'm experencing a very annoying error. I have a ReportViewer control in an ASP.NET page which is configured programatically. That means that I use the following methods to configure it: private void GenerateReport(string reportType) { reportViewer.ProcessingMode = ProcessingMode.Remote; reportViewer.ServerReport.ReportServerUrl = new Uri(ConfigurationManager.AppSettings["ReportServerEndPoint"]); reportViewer.ServerReport.ReportPath ...Show All
Visual C++ Reading from a text file
Hello, I have been having severe trouble trying to read from a text file, which I have created and placed on the folder. The code I am trying to use is listed as below: void CArchiveDlg::OnArclistingButton() { // TODO: Add your control notification handler code here fstream ArcFile; Archive item; int nRetCode; ArcFile.open("archive.dat", ios::in|ios::out||ios::nocreate); //ArcFile.seekg(0L, ios::beg); //ArcFile.read((c ...Show All
Visual Studio Express Editions How to get and set the top-left cell on a DataGridView?
Hi! I' m using the DataGridView on a Windows Form. I want to return a DataGridView to former state of the display. How to get the position of the Cell that the top-left on the current DataGridView and how to set the state The 'top-left' does not means the top-left of 'the data', but 'displayed top-left'. Thanks. hi, i didn't understand what do you mean by your questio ...Show All
Visual Basic Uploading image into DB
Hi, I have a web application, where users can update content using the FreeTextBox editor available from http:\\www.freetextbox.com and would like to give the user also the possibility to upload some images, stored into my DB. I created a DetailsView, where the user can edit/delete/insert new content and should be able to do the same with images. (insert/deleta/edit (update)) I added a FileUpload control to my aspx page and this seems to be work ...Show All
Visual C++ Need syntax examples and info for the super set of C++ (managed C++/CLI)
HI! First please take it easy on me!! I'm trying to teach myself a little about the super sets of C++.. I have read many books over years on OOP's but I never really took the plunge into the pool to get my feet wet,,, I kind of stuck with VB over the years,,, And now that I got a hold of Visual Studio 2005 Pro I'm ready to dive in head first.. The problem is I can't seem to ...Show All
Visual Studio Experimental UI
How would I add a function to collapse a group of shapes e.g. the concept linked to an owning concept Hi, There's a function in every shape and connector called Hide(), and another called Show(). To navigate to the concepts in the group, you might need: myShape.ModelElement as MyConcept -- gets the concept associated with a shape myConcept.AssociatedPresentationElements -- a collection, but there ...Show All
Windows Forms 3d .net controls...
Hi, Is it possible to make 2d default controls provided by the .net framework (like Button, ListBox, etc.), behave like 3d objects Is it possible to give them the ability to rotate, etc... can use managed directx... Thanks ...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 First, ...Show All
