Konstantinos Polychronis's Q&A profile
SQL Server Books Online July 2006 issue
The SQL Server Books Online was working installed on my workstation fine until this morning. Now when I open it up it does not show me T-SQL reference with all the commands and functions. Yesterday I was on the MSDN website using the Books Online. Could some pointers in the program been corrupted I have uninstalled and reinstalled Books Online to no avail. Please help. Thanks, Fred Hi Fred, Okay, this sounds like maybe a filter was accidently set that is limiting the returned topics. At the top of the Contents tab, there's a "Filtered By" drop down box. Make sure the filter is set to either 'unfiltered' or 'SQL Server 2005', or 'SQL Server Database Engine'. That should resolve t ...Show All
Visual Studio 2008 (Pre-release) Limiting the size of the JournalEntryBackStack
Hi, I am building an application that navigates from one page to another using NavigationService Navigate(object) where the object is a PageFunction that I construct. No Uri-based navigation scenarios are possible in the application. The pages are hosted in a Frame that owns the navigation journal. And, I'm setting KeepAlive to True for all these pagefunction objects involved as it'd be impossible for me to restore the exact state of the page otherwise when I navigate Back to it. I'm also providing some CustomContentState to do some additional context restoration when the page is navigated back to. This works quite well and navigation back/forth is instantaneous but, expectedly, my app's memory footprint grows pretty quickly and out-of- ...Show All
Gadgets visual studio templates and intellisense
Is there any visual studio templates and intellisense for gadgets yet I have one that I use, but it's specific to my namespace (and my helper functions). It saves me a TON of coding when I start to write a new gadget. I'll try and put together something a little more generic and announce it here. ...Show All
Visual Studio 2008 (Pre-release) Xaml Error when using Frame in a Window "Source="Page1.xaml"
I am getting an xaml Error when i use a Frame to Display a Page with in a Window Class....When i run the program its fine,when i remove Source="Page1.xaml" the error goes away... But as soon as i put the Source="Page1.xaml" back in the Error Returns.. 'Class' sttribute does not exist in XML namespace ' http://schemas.microsoft.com/winfx/2006/xaml ' namespace Line '8' Position '2' Here is part of the Xaml:: <Window xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " xmlns:mc=" http://schemas.openxmlformats.org/markup-compatibility/2006 " xmlns:d=" http://schemas.microsoft.com/expression/interactivedesigner/2006 " mc:Ignorable= ...Show All
Windows Forms Object reference not set to an instance of an object
When I click on the Add new datasource link in the datasources window the Data Source Configuration Wizard starts. After I select database as the application to get the data from an error dialog shows that states: "An unexpected error has occurred" "Error Message: Object reference not set to an instance of an object" What's happening. This used to work fine. Hi, Thanks Man. I have same problem i am working on live project and we are stuck for this problem and it is solved by your suggestion. You are gr8!!!!. Thanks because everyone has knowledge and someone likes you are sharing it that's good. Keep Sharing knowledge. Thank you again. Kiran Patil, India ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Learning MDX 1.1?
Hello everyone! I've got Tom Miller's two books on Managed DX (Kickstart and 3d Game progamming). I've just started reading the Kickstart one and was later going to read the 3d one, however the Kickstart one goes through alot about setting up a Device and enumerating your system adapters, etc. This is things that XNA does for you, right Later on it goes into more advaced stuff. Is this stuff that I'll be able to use using XNA or is it totally waste of time if I'm going to use XNA Am I better of reading tutorials on the web about XNA Thanks in advace! -Martin Even though the API of MDX is quite different, there are various concepts (such as indeed device creation) that might be useful to learn mo ...Show All
SQL Server [DBNETLIB][ConnectionClient(SEDC.ClientHandshake().]SSL Server error
For some reason, I'm no longer able to connect to any database on SQL Server. If I click on the + sign before a Data Connection in Visual Studio Server Explorer, a Logon dialog opens. Whatever I enter in the dialog results in the following error message: Connection failed. Sql State: '0 80001' Sql Server Error: 18 [DBNETLIB][ConnectionClient(SEDC.ClientHandshake().] SSL Server error Help please. Thanks for your email. I check the settings at the key referred to and found the following: ab (Default) REG_SZ (value not set) ab Protocolorder REG_MULTI_SZ tcp np and the key contains a folder TDS with: ab (Defa ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Pleas suggest technologies to be used for the project
My background: 4 years of OpenGL development 5 years ago, so I am very familiar with 3D graphics and algorithms. Know nothing about Direct3D. I haven't followed trends in 3D hardware/software since then. However I am currently under impression that OpenGL support is dwindling on Windows platform (feel free to disagree and provide more information on that) I am thinking of developing slideshow software using 3D hardware acceleration for transition effects. To clarify: it seems that all existing slideshow products are "off-line" software, that is you specify pictures and transition methods, start "show renderer" and wait. Then some kind of animation file (SWF, MPG, WMV or proprietary format) is produced that you can play back on y ...Show All
Visual Studio Team System ConnectionPool VS ConnectionPerUser
Hi, For a LoadTest's "Run Settings" properties, 1. whats the difference between using ConnectionPool and ConnectionPerUser 2. Which setting "DOES NOT" cause any bottle necks on the Agents. Jesudhas alright: 1.yes, it's still true. 2. C# coded web tests . 3.Think time is enabled for the load test. 4. The CPU on the machine that runs VSTestHost is not busy at all - about 10% . ...Show All
SQL Server Microsoft Association mining algorithem + ASP.NET 2.0
Hi I am working on an academic medical project. I have created PATIENT table PATIENT_ID NAME | CITY DISEASE table DISEASE_ID NAME | and Relationship table[FOREIGN KEYS]PATIENT_DISEASE PATIENT_ID DISEASE_ID I am using Microsoft association algorithm [SQL Server 2005 BI Studio] to find association between PATIENT CITY --> Associated DISEASE. I will be entering dummy data into these tables as this is academic project. I like to know can i be able to find the associated Disease/s with the PATIENT City with this algorithm such a way as soon as the user enters PATIENT City, assocaited Disease will be selected from the diseases table on web interface [asp.net ...Show All
SQL Server Reporting Services Soap API Internal Parameter
Using the web service how do i tell if a report parameter is internal, or hidden ...Show All
Visual C# ADO.Net - OleDb nightmare
Did I mentioned befor I'm new to C# Well I'm trying now to connect to an Access DB with OleDb, so far I haven't been able to figure out what's wrong with this code, I've tried different variations but all of them end not returning any rows from the products table. // Set the DataSet DataSet returnDataSet = new DataSet("StoreItems"); DataTable theProductsTable = new DataTable("ProductsData"); returnDataSet.Tables.Add(theProductsTable); // OleDdConnection setup OleDbConnection MyOleDbConn = new OleDbConnection(ConnStr); // Set the DataAdapter OleDbDataAdapter returnData = new OleDbDataAdapter(); returnData.TableMappings.Add("Products","ProductsData"); ...Show All
Visual Basic Smtp Email Question
I was just curious if anybody knows how to set the username and password on an account in order for the smtp client to be able to send an email... Thanks All... You can try the following. mailClient.EnableSsl = True Rather than waste peoples time and your own, when you ask a question please try and provide as much information as possible, what you've tried showing any code you've used, error messages obtained. It helps avoid delays to giving you a right response. Your not by any chance trying to using gmail are you ...Show All
Visual Studio Team System Loadtestreporting
I am still not able to figure out how to generate reports this is what i have been doing:- 1)open this link" http://gotdotnet.com/codegallery/codegallery.aspx id=e96e012c-4eaf-4eda-ac26-34fb54e628e3 " where it says that the reports are avaliable. 2)This page opens Microsoft Visual Studio Team System 2005 Load Test Reporting Sample: Home 3)Under this page i see two options on the right bottom side under "DOWNLOADS" a) Load Test Reports b) Sample Load Test Maintenace ASP Application 4)I click on any of these options i get a zipped folder which only contains exe file that you have to run to ...Show All
SQL Server How to hide Calculated Members (in the Measures dimension) using Roles
My solution requires a large set of Calculated Measures which I would like to hide on a per Role basis. I have managed to add a role and hide particular Measures for this role (using the "Dimension Data" page of the Role properties), but at this point, no Calculated Measures show up for hiding. Even if I go into the Advanced tab and write some MDX to generate the set of allowed members it does not work: FILTER([Measures].ALLMEMBERS, INSTR([Measures].CURRENTMEMBER.NAME, "Prefix_A") > 0) It seems that when role security is evaluated, the cube has no knowledge of it's calculated members... There must be a way to do this. Even if I can't use roles, I need to acheive selective hiding of the calculated measures in an arbitrary client ...Show All
