Therkildsen's Q&A profile
SQL Server Accessing reports through URL
Hello, All !! I'm now getting problems with access reports through URL. The situation is: I'm posting the form to the frame, action attribute's URL includes querystring. Also I have some inputs in the form. I'm using method=post. Problem is that Report Server ignores parameters from query of the action. I think it should work with them but it doesn't. If anyone knows what's the matter here, please ! Thank you, Alexander Yaremchuk What version of the SQL RS are you using. The latest SQL 2005 CTP drop had this bug, which has been fixed since then. Thanks Tudor ...Show All
Visual Studio Team System Searching Team Foundation source control
Hi, The source control explorer does not seem to have any search functionality that resembles the status search and wildcard search that VSS has. Two searches that I would particularly like to be able to do are: A recursive search for all files that are currently checked out to a particular user or all users. A recursive search for all instances of a file with a particular name. Am I just missing something or is this functionality really not there at all Paul B There's no equivalent for those searches in v1 of Source Control Explorer. For #1, try Status Sidekick . For #2, you'll have to use the command li ...Show All
Windows Forms How do you intercept the Minimize button?
I want to send my application to the tray icon bar. Is not what i was looking for... but thank you. I was thinking a way to Override the EventHandler (Minimize, Maximize, Close buttons) of my Form I hope someone can helpme here. ...Show All
Visual C# VS2005 Beta2 "Preview Data" Window Returns Query Results, but my code does not return results
I'm stumped... I'm using the Beta2 of Visual Studio 2005 When I run a query in "Preview Data" by right clicking on the BindingSource or the dataTableAdapter i get results returned from the query, but when I use the following code in a dataGridView, my code (I'm using the same dataTableAdapter, dataSet, DataTable and FillBy method as in the "Preview Data" window) tells me that no records were returned. dataGridView.DataSource = dataTableAdapter.FillBy(dataSet.DataTable); Has anyone else had this happen Any suggestions as to what I am doing wrong Thanks for you help, Paul I'm not sure if I'm following you here, but a ...Show All
Visual Studio Team System TFSSERVICE needs to be a member of Enterprise Admins - problems accessing http://localhost
I had problems accessing http://localhost on the Data/App tier of my Team Foundation Server after a clean install of VSTS Beta3 - Refresh on Windows Server 2003 with Active Directory enabled. I followed exactly the instructions in the Single-Server Deployment Checklist. The problem was resolved by making TFSSERVICE a member of Enterprise Admins and then rebooting the server. Clearly, there are some permission issues here. Is this a known bug Can TFSSERVICE be made a member of groups with less power than Enterprise Admins Will It does seem that the overhead of VSTS for small teams (less than 5) is growing to the point at which I quest ...Show All
Visual C++ VS2005 Linker /ENTRY
We have a bunch of legacy DLL code which uses makefiles to build. The DLLs all use /ENTRY:SomeOtherName rather than the default and I've encountered a problem in VS2005. If I put the /ENTRY switch on the linker command line in the makefile, it doesn't seem to work - when I attempt to load the DLL via LoadLibraryEx(), I get an entry point not found error (0x7f). If, however, I put the /ENTRY switch in the LINK environment variable, the DLL loads without problems. What's up with that I believe the LINK environment variable gets added at the start of the linker command. Could it be that you are addin ...Show All
Windows Forms How do you get the Form parenting the control?
Looking for a generic way of doing this, probably by just traversing the parent objects and inspecting the object type. What's the proper way of inspecting the parent to handle both System...Form and System...Form derived forms If you want to check if an object is of a given type, you can use the following syntax: c# if (var is System.Windows.Forms.Form) { System.Windows.Forms.MessageBox.Show("This is a form"); } vb If TypeOf (var) Is System.Windows.Forms.Form Then System.Windows.Forms.MessageBox.Show( "This is a form" ) End If ...Show All
.NET Development Show JPG image
Hi everyone, I first would like to warn you that I'm a newbie programmer. So if I have left out important code for you guys to determine what I'm doing wrong, let me know. I am making a PocketPC application using C# and an XML file as a database. I would like to display the corresponding JPG image in a PictureBox, or somewhere on the main page. A sample of my xml file. The bolded line is the picture reference. < fragenkatalog > < ca_id > 4 </ ca_id > < ca_titel > head ap </ ca_titel > < ca_bildurl1 > kopf_ap.jpg </ ca_bildurl1 > < ca_disabled > 0 </ c ...Show All
Visual C++ Windows Forms
Using Visual C++ 2005 Made a windows forms application using Visual C++ 2005, but when i run it I get a console window popping up while my form is running. Guessing one of my project settings is messed. Anyone know which setting is causing the console window to appear when I run my windows form I didn't use the form designer either. You could create a new project (make sure you choose New Windows Forms Application) and move your code into the new project OR Project Properties -> Linker -> System -> SubSystem -> set to "Windows". ...Show All
Visual Studio Team System Technical Requirements in CMMI
Where do technical requirements fit in the CMMI process If a functional requirement is created, where do the technical details go I'm sure we do things backwards here, but let me give you a peek at what we do. Our data analysts create the functional requirements. The developers then take those functional requirements and fill out how they will meet the requirement in a "technical requirement" tab that's linked to the functional requirement. Do these technical requirements lend themselves as tasks in VSTS Functional Requirements - What to do. Technical Requirements - How to do it. (Task goes here ) ...Show All
Software Development for Windows Vista SETUP.EXE throwing unhandled exception while installing Vista
Hi world, I am trying to install Windows Vista Beta 1 on a XP box and planning to make it a dual boot. XP is on C: drive (20 GB) and I want Vista on E: drive (20 GB). I uninstalled the Anti-virus on the machine for this installation. I downloaded en_longhorn_beta1_dvd.iso from MSDN and burnt it on a DVD. After inserting the DVD and starting SETUP.EXE I click the 'Install Windows' icon. After entering the license information, i click next. Now, WDSCORE.DLL is throwing an unhandled exception in SETUP.EXE and the installation aborts. How do i solve this problem and install Vista (I have tried this on 2 different machine and seen the same probl ...Show All
SQL Server is this possible in SSIS?
I got a OLE DB source pointing to 1 table and 1 flat file destination. currently this is how i export data from 1 table to 1 flat file. To make things easier, I was wondering whether i can have only 1 OLE DB source pointing to few tables pointing to few file destinations so I dun need to create 1 SIS project for each table data exporting. anyone can help me Unfortunately not because the metadata i.e. the columns involved in the transform need to be the same. So you can't have 1 data flow in a loop that is reconfigured for different tables and destinations. If the source is SQ ...Show All
Visual Studio Express Editions Cannot open include file: 'atlstr.h'
Having ustalled Visual C++ Express Edition, I'm attempting to compile a source which had an include for atlstr.h. Compilation fails because that header is not present. I've done some research at seems that atlstr.h is part of the Active Template Library. Where can I download a version of ATL that includes atlstr.h I've downloaded both version 7 and 7.1 but neither includes atlstr.h. Thanks. On my previous version ov Visual Studio, that file is located in the folder "...\Vc7\atlmfc\include". So it looks like it's part of ATL for MFC. You need MFC as well. ...Show All
Visual Studio Team System missing Microsoft.TeamFoundation.WorkItemTracking.Controls dll
I recently installed the Visual Studio 2005 SDK and tried to access an included sample project called WIBrowser (their work item browser sample). This project references a dll called Microsoft.TeamFoundation.WorkItemTracking.Controls which does not seem to be included. Has anyone else seen this Did I miss something during the install or is there something else I need to install Any help on getting this sample working would greatly be appreciated. I do have some of the files like: Microsoft.TeamFoundation.WorkItemTracking.Controls.xml Microsoft.TeamFoundation.WorkItemTracking.Client.xml Microsoft.TeamFoundation.WorkItemTracking.Client.dl ...Show All
SQL Server Reusing a Chached Lookup component
Is it possible to reuse a Lookup component which is configured with Full chaching My requirement is as follows.... A input file have 2 columns called CurrentLocation and PreviousLocation. In the dataflow, values of these two columns needs to be replaced with values from a look up table called "Location". In my package i have added two LookUp components which replaces values of CurrentLocation and PreviousLocation with the values available in the table "Location". Is there any way to reuse the cache of first lookup component for second column also Thiru, I'm not ab ...Show All
