jwalker343's Q&A profile
SQL Server Running Reporting Services with
I have a question regarding Reporting Services: I want to run the Reports on a system that has Oracle Database but reporting Services are not installed there. Only Application exe file will be there designed in .NET Windows Forms. Reports will access oracle Database. The ReportViewer control is shipped with Visual Studio 2005 ( http://msdn2.microsoft.com/en-us/library/ms251671(VS.80).aspx ). So you'll need Visual Studio 2005 to. Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All
.NET Development C# - reading and writing memory for game trainer
I'm interested in creating a small trainer for a single player game I made and want to know how to read/write memory with C# given a specific memory address. I found the memory addresses which hold the score (int '004F19EC') and player x position (float '01150630') and want to use them to produce variables in C# to track them and manipulate them. I couldn't find much info on how to do this. It seems I use the Marshal class but I'm having trouble figuring it out. If someone could show a sample of how this is done, I'd appreciate it. Marshal.Write* is for writing within your own process. If the memory is in another process, then you need to pinvoke to kernel32!WriteProcessMemory. Check out p ...Show All
Visual C# Problem with AssemblyInfo.cs
I'm a rookie and I'm trying to run a project coded in ASP.NET and C # locally at the moment, I copied the source files and installed ,configured IIS and registered ASP.NET 1.1. But when I tried open the whole project, it throws me an error: "Source file 'C"\TestingProject...\AssemblyInfo.cs could not be opened( 'The system cannot find the file specified.') I went back to check the original files but cannot find the file AssemblyInfo.cs. and the project is running perfectly elsewhere. What do I need to do about this Any help would be highly appreciated.Thanks in advance! Hi, Is your assembly file on your project folder If is not, do you have it elsewhere If so, add it to the project using Visu ...Show All
SQL Server Errors processing after adding Computed Column to Time
SSAS 2005 SP1 I just created a computed column in my Time dimension for "Period over Period Growth %" using the Business Intelligence wizard. Now, when I try to process any cubes using this dimension or the dimension itself, I receive this error: Errors in the high-level relational engine. The 'dbo_DimTime' table is based on a named query, and contains one or more computed columns. A table based on a named query cannot contain computed columns. If the computed columns are necessary, add them to the query expression. dbo_DimeTime is not based on a named query, but all my cubes have the TimeID relationship from this dimension. 3 of these cubes are based on named queries which partion the data annually. Each cube has its ow ...Show All
SQL Server updateting DataSet to MSSQL with XML datatype field
We are trying to update a changed DataSet to at table in MSSQL server The table have an XML field and that gets converted to System.String when we get from the DB when we try to save the dataset the XML field ind the table is set to NULL How can this be, the DataSet can convert it to System.String when we SELECT it from the DB, but when we save, nothing happens and we get an empty field. Not even an SQL error... This is what you get for beeing new in .NET :o) I have absolutly no idea why or what I did, but now it works.... The xml gets saved in the DB I would still like to know how to get the SqlXml datatype directly to the DataSet, but maybe thats not possible... Thank anyway.. ...Show All
Visual Studio 2008 (Pre-release) WCF getting running woes
Hi, I've installed dotnet 3 and "Visual Studio 2005 Extensions for Windows Workflow Foundation RC5(EN)". I'm now working through the samples and have had no luck. I'm not sure if I've not installed the stuff properly or if there is some other problem. Problem 1: When I run the GettingStarted sample I get the following error: "Could not connect to http://localhost:8000/servicemodelsamples/service . TCP error code 10061: No connection could be made because the target machine actively refused it." Problem 2: When I run the SelfHost sample I get the following: "The remote server returned an unexpected response: (405) Method not allowed." Problem 3: When I point IIS to the folder that the website is physica ...Show All
Audio and Video Development Changing backgroundImage From Script
I'm trying to change the backgroundImage of a button from script, if I do this fom markup it works but when I try it from script the iHDsim crashes. Code: document.getElementById("mybutton").style.backgroundImage="url('images.aca/audioDefault.png') url('images.aca/audioSelected.png')"; I have tried to change backgroundImage from script, but failed on Toshiba Player. Who can give a hand Many thanks in advance. ...Show All
SQL Server Script task DLL reference w/o being in GAC
I need to add a reference to a DLL from a script task. But I do not have the ability to put the DLL in the GAC. The DLL is a 3rd party DLL and they do not want to strong name it because that creates a chain effect having to strong name all DLL's that are used in their projects that share the DLL I need to refernce. Ok my question is.. Can i reference that DLL somehow in the script task by manually adding the reference at runtime I found this next snippet of code on the internet, i cant get it to work though. Public Overridable Function CreateReferenceItem(ByVal itemName As String, ByVal assemblyName As String) As IVsaReferenceItem Debug.Assert(Not (itemName Is Nothing) AndAlso Not (itemName = String.Empty)) Me.AssertEngineItemUniq ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Creators Club Benefits
"Both subscriptions provide aspiring game developers with access to thousands of game assets from Microsoft and key partners such as Turbo Squid Inc., as well as white papers, specialized starter kits, samples and technical product support to help turn Your World, Your Game into a reality." Am I missing something here Where can I get access to these 'specialized starter kits' and 'samples' Have I been deceived into buying this subscription If so, is there some way I can get my money back Maybe I'm missing something... Here are some more discussion/promises in a previous thread if you are interested: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1112030&Sit ...Show All
SQL Server Custom assembly : Retrieving data from from configuration file.
Hi all, my problem is that: I do read informations (e.g. connectionString) from configuration file by one custom assembly. My environment is RS2005, VS.NET 2005 Prof.Edition, WIN2003 Server SP1, .NET Framework 2.0.50727 The scenario is that: A text box into my report require a function contained into MyCustom.dll. This code do read information from MyCustom.dll.config. This file contains: < xml version="1.0" encoding="utf-8" > <configuration> <connectionStrings> <add name="IS2009cfg" connectionString="data source=servername\instancename;initial catalog=dbname;user id=xx;password=yy;" /> </connectionStrings> <appSettings> <add key="DefaultHeaderLog ...Show All
Windows Live Developer Forums Live ID SDK
When the live id sdk will be lauch tks! We have released the alpha version of the Windows Live ID Client 1.0 SDK. Please check it out here: http://connect.microsoft.com/site/sitehome.aspx SiteID=347 and leave feedback on the forum. ...Show All
Visual C++ LNK2028 and LNK2019 when porting to managed C++
I’m trying to convert an unmanaged C++ application that uses a third-party DLL (written in unmanaged C++) to a managed C++ application that uses the same DLL. The unmanaged app builds fine, but when trying to build the managed version of it, I’m getting the following linker errors - LNK2028, LNK2019, and LNK2001. Here is C++ snippet that reproduces some of these errors. The code may not make much sense, but you should be able to see the errors I’m getting. // MyApp.cpp : main project file. class __declspec ( dllimport ) MyBase { public : MyBase() {}; virtual ~MyBase() {} }; // Uncomment the line with __declspec (dllimport) and // comment out the line without __declspec ( ...Show All
Software Development for Windows Vista Hang with InvokePattern - Invoke
Hi guys, I'm having a problem with the invoke functionality. I made a small test application which contains one button. The code in the click event is the following: Thread .Sleep(1000); MessageBox .Show( "MSGBOX1" , "MSGBOX1" ); Now from my other application that uses UIAutomation, I click the button with this code: InvokePattern ctrl_invokepattern = ( InvokePattern )control.GetCurrentPattern( InvokePattern .Pattern); ctrl_invokepattern.Invoke(); MessageBox .Show( "Hmmm it doesn't get here " , "MSGBOX2" ); The code to click the button works, but the 'Invoke()' functions DOESN'T return So when the next line would be: click the OK button on MSGBOX1, this doesn't work! I first have to manually click on the ok button of MSGBOX1 ...Show All
Visual Studio Team System Comments not cleared after Unshelving changes
The comment entered during the shelve process does not clear after the changes have been unshelved. I had to manually delete the comment but to find that it reappears the next day when I log back into TFS. Has anyone reported this issue Maggie Yes, I hate that. Similarly, if you shelve changes with /move (or uncheck "preserve changes locally"), it doesn't clear the comment. My bug was postponed...hopefully we'll revisit it. ...Show All
Visual Studio How to execute a custom debug engine ? Thanks !
We have already wrote a custom debug engine, using the TextInterpreter as the guide. But we always failed when try to execute it. We successful modified and compiled the MyCPrj sample project followed by the TextInterpreter tour. First we start the Visual Studio 2005 Exp hive, then we create a custom project type MyC project, next when we try to select Properties , we will hang the system. So could anyone help me to solve this issue We use Visual Studio SDK v3 and Visual Studio 2005 Professional Edition Thanks !! Hi, The easiest way to launch a custom debug engine that I found is to make a new VSPackage with a menu item which when clicked calls IVsDebugger2.LaunchDebugTargets2 with a VsDebugTargetInfo2 structure. The guid ...Show All
