Juliano Nunes's Q&A profile
SQL Server "Less Than or Equal To" MDX query
The following MDX query is generated by the Reporting Services I need to edit the this MDX query so that it will accept the parameter value "Less Than Or Equal To" the @AccountPeriodAccountPeriod parameter to filter teh cube data. Thanks. SELECT NON EMPTY { [Measures].[Costing], [Measures].[Distinct Count] } ON COLUMNS , NON EMPTY { ([AgencyID].[Agency Id].[Agency Id]. ALLMEMBERS * [Account Period].[Account Period].[Account Period]. ALLMEMBERS * [Account Period].[Prescription Date].[Prescription Date]. ALLMEMBERS * [Drug].[Protocol Code].[Protocol Code]. ALLMEMBERS * [Drug].[Drug Name].[Drug Name]. ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION , MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ...Show All
SQL Server Using SQL Server 2005 Express in a Windows peer-to-peer workgroup
Does anyone have a experience or links to resources for implimenting SQL Server 2005 Express in a Windows peer-to-peer workgroup Thanks. I have this same scenario. I am getting ready to deploy sql express to small LANS across the country. The front end is C# 2 and the backend is sql express and it will be ran by 1-10 PCs in general primarily on peer to peer workgroups. I need to know how I can enable remote connections as well because I can't get it to work. At home here I have two pcs right now in the same peer to peer workgroup. Each PC is running XP Pro with sql express 05. Each PC has remote connections enabled (via surface area configuration). I can connect locally just fine but remo ...Show All
Visual Studio VS 2005 Beta 2 with .new Framework 2 (release) and VS 2005 SDK (October)
I had VS 2005 Beta 2 installed and working with .net Framework 2 Beta 2. This morning I decided to try out the DSL tools. This required replacing the .net Framework 2 Beta 2 with the released version. Then installing VS 2005 SDK. Eventually I got everything installed. But now VS 2005 won't load. I get the splash screen with the note about the VSIP Licence Required (I read the threads indicating that this didn't mean anything). So will the DSL tools work with Beta 2 of VS 2005 Thanks Chris. Hallo JDevitt, No, as Craig said, each Visual Studio version is bound to a specific version of the .NET framework. You can have multiple versions of the .NET Framework installed to your system (for your applications to run) but you can ...Show All
Visual Studio I pass values in the report viewer and wont respond.... - newbie
Hi I m using VS 05 and i ve made a simple report in which i give two parameters startdate and enddate (integers representing year of birth) and i get back a table with people that were born in the given range of years (with reportviewer control , remote processing) When i set at the sql server reporting services the parameters with defaulf values (for example , start date = 1900 and enddate=2000) the reportviewer renders and give me the results at my test website http://i176.photobucket.com/albums/w189/a_joom/01.jpg The problem is that while i m on the page, if i change the dates ,ex. StartYear=2000 endYear= 2007 and press view report the parameters wont pass , instead I get back the same report table with the start date ...Show All
Windows Live Developer Forums MapCruncher customer tile layer looks a little MapBlended ...
I tried making my own custom tile layer using MapCruncher and it looks very good when I view it using the samplepage.html that comes with MapCruncher. However, when I tried to use my own html page by modifying the custom tile layer code in the sdk it looks a little blended. Does any one know why this is happening I made the following modifications to the custom tile layer sample code: function GetMap() { map = new VEMap('myMap'); Changed the default Lat Long to centre where my custom layer is. map.LoadMap(new VELatLong(43.7706272357647,-79.5549744612714),11,'r' ,false); GetTiles(); } function GetTiles() { Modified boundary box to be in the general location of the map var bounds = [new VELatLo ...Show All
Visual Studio OK, who stole my CSS Editor?
Can't remember how I installed VS2005Pro, but Ithink it was the General purpose install....anyway, when I'm working on CSS files, my Style menus are grayed out and I'm looking at plain text with no intellisense support. I did a search('Find' command) for some text in a CSS file and upon opening another CSS file that contained the 'Found' text, the CSS editor was fully functional until I closed the found file and then tried again to reopen it -- then, no more Style sheet menus or intellisense. I'm sure this is some cool new feature that the guys at MS really like,but, PLEASE, would someone explain it to ME I'd like to have intellisense working when I'm working on my CSS files. Thanks I am also shocked at what I do NOT see ...Show All
Windows Live Developer Forums Dashboard control
Hi, How can I specify the dashboard position on the map In V2 there was an object parameter in MapControl() constructor. Using this object parameter I was able to specify where I want to place the dashboard. Is there something similar in V3 I tried playing with .Compass and .Zoombar styles but they move only compass and zoom bar respectively - the dashboard (light blue semitransparent box) remains in upper left corner of the map. Thank you, olley. Wow! That's exactly what I need. May be it is not ideal and not documented but it works Thank you guys! ...Show All
Windows Forms binding a key to a button
Hello again everyone, Is it possible to bind a key to a button in C# For example in my windows application whenever I press the "left" key buttonLeft will behave like it is pushed. I tried it but cannot achieve. Also I tried to add the keyDown and keyPressed event handlers to my main form but nothing happens when I press a key. pasha2k wrote: Hello again everyone, Is it possible to bind a key to a button in C# For example in my windows application whenever I press the "left" key buttonLeft will behave like it is pushed. I tried it but cannot achieve. Also I tried to add the keyDown and keyPressed event handlers to my main form but nothing happens when I press a key. I recommand that you read the ...Show All
Windows Forms Is Form Height limited?
Why isn't possible set Height value for windows form greater than 1044. When I write bigger value is automatically repaired on 1044. Thank's for any idea. I tryied create new Windows Application project. In a Form1 a try set Size.Height to 1200. It isn't possible because value is repaired to 1044. I need long form and need design it. But it isn't possible and I don't know why. In a new project I don't specify any windows size. May you set Height bigger than 1044 in a new Windows Application ...Show All
Visual C# Notepad syntax higlight code
How can i add syntax higlight in my notepad application, i am a newbie in c# and this forum. :) There are many sysntax hilight solutions available like Open source IDE you can download it and look to its source code http://www.sharpdevelop.net/OpenSource/SD/ and this use Compona Syntaxbox http://www.codeproject.com/useritems/fireballcodeeditor.asp others http://www.codeproject.com/cs/miscctrl/SyntaxRichTextBox.asp http://www.codeproject.com/cs/miscctrl/SyntaxHighlighting.asp ...Show All
Windows Forms Datagridview - making rows behave like columns
Hi, a few days ago i've written this message in the forum: I need to change the functionality of a datagridview control, i want to have in the same coloum a ComboBoxRow and a TextBoxRow. meaning, i want to have the control behave instead of columns that define the table - the rows should do that. any ideas Tz and got this response: Private Sub Form1_Load( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles MyBase .Load Dim dc As New DataGridViewTextBoxColumn DataGridView1.Columns.Add(dc) DataGridView1.AllowUserToAddRows = False DataGridView1.RowCount = 2 Dim cc As New DataGridViewComboBoxCell cc.Items.Add("One") cc.Items.Add("two") ...Show All
Visual Basic How to automate Microsoft Excel from Visual Basic Expess Edition?
I have tryed to automate Microsoft Excel from Visual Basic Expess Edition with the help of http://support.microsoft.com/kb/219151/en-us but in this example the code is written for Visual Basic .net or 5 or 6 not for expess edition.I copy the code exactly as this link shows and i put the reference Microsoft.Office.Interop.Excel. After running and pressing the button i get the following: COMException was unhandled Old format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD)) Can anyone help 'Imports Microsoft.Office.Interop.Excel See if creating a new instance instead of using create object helps! 'Public Class Form1 'Private Sub Button1_C ...Show All
Software Development for Windows Vista How can capture desktop by DirectShow
How can capture desktop and build a mediafile which show the captured desktop which filter can do it I have known that so-called "Pushsource Desktop Filter" can finish capturing desktop but i donnot know this filter is built by other developers or Microsoft. And I need CAPTURING DESKTOP of code sample I am looking for code sample all the time,Hope somebody give me a hand! hi, you can indeed use PushSource Desktop Filter. This one comes as a sample with directx sdk. The code is available within c++ samples with directx sdk. ...Show All
Windows Live Developer Forums DNS Domain Entries
I have a registered domain name:www.mydomain.com Using Windows 2003 Enterprise, with two NIC's, I generated an active directory local domain (HQ.mydomain.com) and I created DNS A records for all the computers in my local domain. I want to have an internal and an external network. My main computer (main.HQ.mydomain.com) connects to the internet but the other computers do not. I want the www.mydomain.com to come into (main.HQ.mydomain.com) for my web site. When set up properly in DNS I'll install ISA2004 on main.HQ.mydomain.com and I want to use VPN from client later. Are there any labs available or tech articals for this arrangement I really need help getting DNS correct so I don't keep blaiming it for every problem. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Drawing 2d Graphics
I'm just begining programming with Visual Basic Express Edition. I have no idea how to draw graphics. Can you give me any code Well, DirectX isn't very VB friendly. Although you _can_ write samples in VB, you'll find yourself in a very lonely place, since we only supply samples in C# (for managed code, with one lonely VB.NET exception that's not aimed at beginners). My recommendation is that you download Visual C# Express and then take a look at the tutorials in the DirectX SDK. In particular, you will want to look at the Simple2D sample in the SDK. If you absolutely, postively insist on using VB.NET, you can look here: http://www.thezbuffer.com/articles/187.aspx ...Show All
