ramjamman's Q&A profile
SQL Server Fixed header
Hello! I have a report that the users reach from an url. In the url I have rc:parameters = false. That part works fine. But when I use rc:parameters = false, the property fixed header doesn't seem to work. If I run the report from the report server it works fine, but not from the url. Any ideas /C Fixed headers don't work if the url access displays more than one page at the same time. The best way to ensure that fixed headers work is to run with rc:toolbar=true ...Show All
SQL Server LoadReport() - SoapException - Help needed
Hi Experts, getting the Error: Server did not recognize the value of HTTP Header SOAPAction: http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/LoadReport when calling LoadReport(). I can access the ReportServer and ReportManager through Browser and get perfect results. I also can querying the WebService through a DataSet (XML-Data-Provider) in a Report Project. VS 2005; SQL SERVER 2005; IIS6; Windows Server 2003. RS is configured on DefaultWebSite(Port 80) rsExec = new rsExecService. ReportExecutionService (); rsExec.Credentials = System.Net. CredentialCache .DefaultCredentials; rsExec.Url = http://pserver01/ReportServer/ReportService2005.asmx ; // Render arguments byte [] ...Show All
Visual Studio Express Editions Clng or + or? addition problems.
Hi, just came over a problem. I have 2 text boxes and want one of them to add the other text box. Penger.Tag = Penger.Tag + Skudd.Text That only resulted in adding the numbers at the end of the other numbers. So, im wondering is the right way to do it like this Penger.Tag = CLng(Skudd.Text) + CLng(Penger.Tag) Or is there a other way thats more safe ahmedilyas wrote: to add values, you need to convert them to the correct numeric format type. So what you done should be ok but you need to make sure that the values you are trying to add are actually numeric values. How ...Show All
Visual Studio Express Editions web textboxes
Hi peeps, Does anyone know how to insert data from a vb form into a textbox on a website what I would like to achieve is automaticly log into yahoo mail with the selected username and password and return the current new messages in the inbox folder. hope somone can help, thanks. im not sure to be honest and dont quite think so, you could do the not so great method of doing send keys! But I would rather you use the correct procedure - using the webbrowser control, and gives you alot of flexibility too should you require to do anything else ...Show All
SQL Server Totals and Calculated members bug in SSAS 2005 (CTP3, SP2)
I have created two calculated members in the Adventure Works cube: ---------------------------------------------- CREATE MEMBER CURRENTCUBE .[MEASURES].[ParallelPeriodSalesAggregate] AS Aggregate ( ParallelPeriod ([Date].[Calendar].[Calendar Year],1,[Date].[Calendar]), [Measures].[Internet Sales Amount]), FORMAT_STRING = "### ### ### ###" , NON_EMPTY_BEHAVIOR = { [Internet Sales Amount] }, VISIBLE = 1 ; CREATE MEMBER CURRENTCUBE .[MEASURES].[ParallelPeriodSalesSum] AS SUM ( ParallelPeriod ([Date].[Calendar].[Calendar Year],1,[Date].[Calendar]), [Measures].[Internet Sales Amount]), FORMAT_STRING = "### ### ### ###" , NON_EMPTY_BEHAVIOR = { [Internet Sales Amount] }, VISIBLE = 1 ...Show All
SQL Server How can I list out all the server names and their database list, running in my network (LAN).
I'm using C# - VS2005. Best Regards Trinadh P. Can't see how this relates to SQLNS... But, SQL Server 2005 allows you to register instances in the Active Directory. You then query AD for the list. For more info, check out BOL: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/75a4fbe7-0848-45dc-878a-068480a822e0.htm HTH... Joe ...Show All
Visual FoxPro reading a directory for a existing files
hi there! im new to vfp and i want to make a programm that reads a certain directory and which gives me back the number of the files in that directory and the filenames. can someone tell me how it works in vfp it will really be great... thanks in advanced! novelle You may find a exemple at: http://fox.wikis.com/wc.dll Wiki~RecursiveDirectoryProcessing~VFP ...Show All
Microsoft ISV Community Center Forums How to adress a single cell in a named area
I have a named area "Stock" on a spreadsheet (Office XP), the range is defined as follows: =OFFSET('Stock List'!$K$1,0,0,COUNTA('Stock List'!$F:$F),4) ie it starts at K1, is 4 cols wide and as deep as the number of used cells in Col F I want to access this in an array format using VBA, ie using variables to define the position of a single cell within the array and to either read or set the value of that cell. I tried Range("Stock").Offset(x,y).value="test" to put 'test' into cell x,y in the array - it puts the value into a range, not just a cell. and to get the value i.e. variable=Range("Stock").Offset(x,y).value What is the correct code please ALlan ...Show All
Smart Device Development Getting the calling application path
Hi, Is there anyway of finding the application name from a class I'm trying to build a configuration setting class (like the one in the full framework). It all works fine if it is called from the application .exe but if I call it from a class which has been created by the exe it does not work. The reason being that I get the path of the calling assembly and then add .Config to it get the settings file eg assemblyPath = Assembly .GetCallingAssembly().GetName().CodeBase; configFileURL = assemblyPath + FILE_EXT; Is there any other way of getting the application filename, either through a specific method or by walking up the call stack. Thanks in Advance. Andy Hough Andy, Th ...Show All
SharePoint Products and Technologies KPI List - Error with KPI different Site
I created a KPI list and added a new Indicator using data in SharePoint List. The indicator uses information from a Tasks list on a different site within the same site collection. The indicator appears correctly in the KPI list, however, when I click on the indicators name I get the following error message: Incorrect function. (Exception from HRESULT: 0x80070001) If I create the exact same type of indicator with all the same values but for a tasks list on the same site as my KPI list it works fine. Anyone seen this before Can I not pull indicators from multiple SharePoint sites Thanks, Andrew ...Show All
SQL Server how can I obtain message_id?
Hi all! How can I obtain message_id when I SEND the message, before I execute RECEIVE statement Thanks a lot for the help! Two points, Messages that come back to your initiator service use the same conversation group. This means that if you specify a conversation group you can use that to correlate messages you send to messages you receive. In this situation generate a guid (newid()) and then use that for the conversation_group_id. Then you can store it in a table, If you want the target service to know this id then you will need to include it in the message. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. My first game... Asteroid Defense.
In this game you are a ship protecting a planet from incoming asteroids. Controls: 360 controller: Left Joystick -- Move ship left and right. A -- Shoot Right or Left Trigger -- Change Weapon. Keyboard Left and Right Arrow Keys -- Move ship left and right. Up and Down Arrow Keys -- Change Weapon Space -- Shoot The weapon you are using is shown in the top left corner. The stronger the weapon you use, the less points you get for destroying an asteroid. Levels progress at timed intervals and more and more asteroids come down. You lose when one of them reaches the planet. Screenshot: http://www.rocketsoft.gm-school.uni.cc/uploads/ADScreen.JPG Game File: http://www.rocketsoft.gm-school.uni.cc/uploads/AsteroidDefense1.1.rar All in ...Show All
Visual Studio 2008 (Pre-release) WPF Bug: Fatal Exception 0x80131623 and ReturnEventHandler
I just ran into what appears to be a bug in WPF, or at least an undocumented requirement. Essentially, it appears the method implementing the ReturnEventHandler for a PageFunction.Return event must belong to a PageFunction or the entire application just faults and terminates immediately with 0x80131623. There are no prior first chance exceptions appearing in the debug console that I can find which might be contributing. The following is further elaboration of the scenario. PageFunction1 has a button that triggers a RoutedUICommand. Command1, among other things, implements OnExecute and OnCanExecute as RoutedUICommand event handlers. RoutedUICommand1, Command1.OnExecute, and Command1.OnCanExecute are bound to PageFunction1 u ...Show All
SharePoint Products and Technologies Reports from Lists
All: I would like to create a report based on a list. Take for instance a simple issue log: How do i create a report in SharePoint and organize the list by "Entered By" I have created reports in Access that use the data from SharePoint via linked tables and I would like to 'duplicate' these reports in SharePoint. Thank you ps. i have looked at "Microsoft SharePoint Products and Technologies Resource Kit" but with out any luck. Thank you Mike, that is NOT the answer I wanted!! As you inferred, I need good looking reports which are easy to make in Access and the list views in SharePoint are not the best. We have not yet moved to SQL Server 2005 and Office 2007 yet, but i w ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Orthographic Perspective/Drawing in 2D
This should be simple, but I'm having trouble getting it to work. I sort of understand matrices. I understand them enough to use projection matrices and I have before, but for some reason I'm unable to get the right orthographic projection. All I want is an orthographic projection matrix that uses the same coordinates as the viewport so that placing a point at (0,0,0) is the top left and (screenWidth, screenHeight, 0) is the bottom right. I've tried two different ones (both orthographic matrix creation methods), but neither yielded proper results. b.effect.View = Matrix.CreateLookAt( new Vector3(   ...Show All
