Niehls's Q&A profile
Community Chat KnowledgeNavigator
KnowledgeNavigator is a Dot Net based knowledge abstraction tool using an Acess database. It is a set of organized categories and documents that you, the user define. The categories and documents created by you and are displayed as if they are in your computer file system except they are not. These documents and categories are contained in one central and transportable database, a database that you can send to friends and share with them or a database that contains all the documentation for a project, or better a set of in-depth topic on wine or even recipes. You can create Categories and subcategories of your own chosing and ogranization. New databases can be created and selected. KnowledgeNavigator will ...Show All
Visual Studio Express Editions Internet Options
How can i make a button that opens internet options in Visual Basic 2.How can i make a button for WebBrowser1 Online/Offline "How can i make a button that opens internet options in Visual Basic " Buttons activate code. The answer is that an enormous amount of code is required to produce the same functionality as internet options has and you have to write that yourself. 2.How can i make a button for WebBrowser1 Online/Offline This question is not clear. ...Show All
SQL Server SQL Server Managment Studio
I'm now using SQL 2005 instead of 2000 and when I'm writing Stored Procedure if I don't put the database name as in the FROM clause in a Select statement and one of the specified column is not existing (or has a typo) in the table, I don't receive an error when I parse the code. Is there a way to be prompt for the error prior to call the SP Hi, this is called deferred name resolution which always takes place if an object is not yet existing in the database. If a referenced object exists, SQL Server will check the existance of any column if not it is deferred to the execution time (late object resolution). You cannot influence this beside executing the stored procedure and check for er ...Show All
Visual Studio Team System The application for project is not installed (project types .rptproj and .dwproj)
It used to work, but then... Visual Studio 2005 was hummin' and I had a number of BI projects in both Report Services and Analysis Services. I wanted to add source control and decided to install the Team Suite and I did something wrong. I just don't know what it was. In the end, I deinstalled every Visual Studio 2005 (including, of course,the Team stuff)and SQL Server 2005 application, and reinstalled old faithful Visual Studio 2005, but nothing has worked. I'm missing the Business Intelligence project templates completely and I'm guessing that if I had them, I wouldn't get either of the following 2 messages when I try to open existing projects: "The project application for 'c:\...\SOS.dwproj' is not installed. Make sure the ...Show All
Visual C# DOMParsing
i wanted to ask if someone can give me an example of how to parse through an XML dock down to a specific node, then edit that nodes attribute. thanks ...Show All
Visual Studio 2008 (Pre-release) Clipboard Problem
Hi there I seem te be having a problem when placing images on the clipboard. It only seems to be a problem when the code is executed on a Virtual PC and I suspect it has something to do with graphics memory, but I am not sure, and I was hoping that perhaps someone will know of a better way to accomplish this. Here is some info on the app. We have an avalon design canvas on which all kinds of objects are placed. Later on the user can then select an area of this design canvas and "grab" a bitmap image of the selection. This bitmap image is placed on the clipboard from where it can be pasted into other applications as normal images. Here is the code that takes, as input, a FrameworkElement, makes a bitmap out of it an retur ...Show All
Software Development for Windows Vista Windows Vista Upgrade from XP Prob.
Hey all, I have got Windows Vista Beta 2, downloaded it and tried to install it. At first, it tell me that I have to remove Macafee Security Center and I had problems doing so. So I went and downloaded the remove tool of VirusScan and it's components including Security Center. The Uninstallation was successful. After that, I tried to install Vista again and the following Runtime error kept on coming up when it's checking the compability Runtime Error! Program: C:\$Windows.~BT\Sources\Setup.exe The application has requested the runtime to terminate in an unsusual way. Blah Blah Blah. I have googled it and some people are saying that it's from Macafee but I uninstall ...Show All
Windows Networking Development Problem with QOSAddSocketToFlow
I have a problem with Vista OS build 5536 and Vista windows SDK 6.0.5472.2.1.WindowsSDK_Vista_idw.DVD.Rel.img With such version, the QOSAddSocketToFlow returns an error code ERROR_NOT_FOUND, which says that Invalid FlowID specified. Howeve, I set the parameter Flowid with 0 as the API domument described. Thanks for any help... Our ring0 code is trying to set the TOS bits for DiffServ Control Points (DSCP) for media such as VOIP and video. Our Win2k and XP code uses a deprecated TDI call to SetInformationEx which has no effect on Vista (but just as the documentation says, it doesn't fail either which is good). thanks! mark ...Show All
Software Development for Windows Vista Starting a WF from a WF
Hi, I'm trying to create a custom listener activity that starts other workflows and running into problems getting a handle on the WF Runtime. We are calling this particular activity from an ASP.NET site. On my local machine it works fine when I do this: WorkflowRuntime wfRuntime = new WorkflowRuntime("WorkflowRuntime"); wfRuntime.StartRuntime(); Dictionary < string , object > parameters = new Dictionary < string , object >(); parameters.Add( "TaskId" , taskId ); WorkflowInstance wfTask = wfRuntime.CreateWorkflow( typeof ( j1pTask ), parameters); wfTask.Start(); But when we publish the site to the server we get errors on the first line. From my reading it appears that this shouldn't w ...Show All
Visual C# Searching in a text file
Hello I have a text file with a list of numbers and names.For example 345623 John 234800 Jim 298756 Maria with about 40000 such entries. I would like to search the text file for a specific number and display the associated name. How can i search fast the text file I dont want to use any kind of collection if possible. regards. I don't think so. You can't navigate to a particular line in a text file, only forward reading. You could do a 1 time only parse of the text file to an DataTable, set the "id" as the primary key and use the WriteXml method to save it. string filename = "" ; TextReader r = new FileInfo (filename).OpenText(); DataTable table = new ...Show All
Visual Studio VS 2005 - Where is the memory view window?
Hi people, I'm looking for some sort of memory viewer window that I could load in VS 2003 in Debug Mode for viewing what data is on a certain location in memory. In VS 2005 I can't find this option! I'm sorry that I don't know the exact name of that opion, but I don't have VS 2003 installed on my system at the moment... Thank's a lot for your help Got the same problem. Sounds weird but I dont have Debug/Windows/Memory item in drop-down options. Just Break Points Watch (4 windows) Locals Call Stack Threads I was debugging regular .exe. Any help, please! msvc 2005, Version 8.0.50727.42 (rtm.050727-4200) Installed Edition: Professional Microsoft Visual Studio 2005 Ver ...Show All
Visual Studio Express Editions Contextmenu: activated from which control ?
I have a context menu (right-click menu) that several comboboxes point to (contextmenustrip). If I rightclick on these comboboxes, the menu drops down and I can select an item from it. This can be detected by the event handlers. But how do I find out the control from which I right-clicked The list of options form toolstrip items is endless.... couldn't find it... Thymen Probably the best way to do this is to make a class which inherits comboxbox. so the class looks acts like a combobox. But add a contextmenu to each class as a ProtectedFriend withevents Dynamically construct the context menu and add Items, you can even declare the items as protected friends with events in the class and ...Show All
SQL Server drilldown group expanded by default
Hello!! I have a matrix in a report with groups and subgroups like this : *group1 *subgroup1.1 item1 item2 etc. I would like to show the group expanded by default so when I view the report I see: *group1 subgroup1.1 *group2 subgroup 2.1 Right now I've played with InitialToggleState and visibility->Hidden properties but I don’t know how to do it....help me please Thanks I published an article showing the steps for this (at least an example similar enough to be useful, hopefully): http://www.databasejournal.com/features/mssql/article.php/3527321 This was for MSRS2000, but the logic should be good in SSRS2005. Good Luck! Bill ...Show All
Visual C# Auto generated Unit Tests in WinFX application
We have a project that is a WinFX (xaml) application. When I start a unit test, the 'create unit tests' / 'current selection' dialog only shows the Project and Namespace. There's no list of classes or methods below that. When I check the project box, it automatically checks the namespace box but does not generate any unit tests. What's up with that Becky I opened a ticket in October 2006 for this issue, and recieved the following information from Microsoft Support: I just talked to Dev guys. Not a good news for you but anyway I have convey. This is known issue and fix for this issue is planned for the next version of Visual Studio (Orcas) which is a long way to release. I believe this informatio ...Show All
Software Development for Windows Vista Deletion of PnP drivers saved in a Repository.
Hello all, On installation of a software package Vista saves driver packages into a special folder ( %windir%\System32\DriverStore\FileRepository\), but does not delete it during uninstallation process. Is this normal situation or not Is there a way to completely remove a software from customer's system using standard deinstallation procedures and practices Surfed through MS pages, but have found no info about this, so any help will be greatly appreciated. TIA. Please post a copy of your installer logfile, I believe you'll find these in the %Username%\Local Settings\Temp directory. You'll need to use the /L logfile.txt option and run from the command line. Here's the installer docs where you'll find command line options. ...Show All
