Dondor's Q&A profile
SQL Server Toggling Visibility on a Snapshot not working
I have a clean SQL 2005 install, with SP1 installed. It is connecting to a TeraData warehouse. I have create a few reports that Toggle the Visibility and they have seemed to work just fine. Until I render them from a snapshot (the problem doesn't exist with a cached copy). Once I render from a snapshot the ability to toggle the hidden rows goes away. It looks as if it is going to show the rows then returns to it collapsed state. The ReportServer database is on a separate machine from the Web Service. The Web Service is running in a Virtual Server (R2 - latest). The reports are only being accessed from within the intranet and the proble ...Show All
Visual C++ Is it possible to code in regular C++?
I'm a student and i got a trial edition of Visual Studio, My class is about C++ and my professor wants it coded that way, so i was wondering if there was a way to code regular C++ in this program. Use MinGW (minimalistic GNU for Windows). It's a gcc compiler which contains all the posix stuff as well as native windows API gear. It's free and it's good and you don't have to suffer a bloated GUI and you even get to automate things properly with make files. You can grab a copy at http://mingw.org/ ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Passing a reference to a function?
I'm trying to put all my device configuration in a separate class from my GameEngine class, but I'm not sure the best way to get the created device back. Currently I have a function that does the capatilities checking, creates the device and returns it. Is there a way to pass a device variable reference to the function instead of creating a whole new one in the function As opposed to creating a device, returning it from the function then disposing it when function call is done.. I'm not sure if I'm making sense here... What are the incx and incz members for That's specific to some sample I was working on. Are Effects jus ...Show All
Smart Device Development Installing Framework 2.0 over 1.1.
Hi, It seems that i need to use some classes that are available only in 2.0, but i have 1.1. Is there some articles about reinstalling 2.0 over 1.1 I have lots of development stuff on my comp and i dont want to harm anything uninstalling 1.1 and installing 2.0. Currently i have 1.1. and VS 2003. So, if i take 2.0 Framework and 2.0 SDK and install both of them, not removing 1.1., will everything work fine Will my VS 2003 work with 2.0 since that time Thanks, Belochka. Ooooh, ok, so that's what i feared :))) Thanks for the answer, Belochka. ...Show All
SQL Server Convert a sql express to mysql
Hello. I have created a web site using visual web developer (free download) The website was created using asp.net 2.0. The vwd I have incorporated the cool new roles and membership features of asp.net 2.0. When i did this vwd automatically created a sql express database (aspnetdb.mdf) to hold the login stuff. I then purchased som e web hosting from a company and found out that they only support MySQL databases. My questions are; 1. Can anyone tell me the difference between the two types of database (i know what sql express is but am not sure what MySQL is) 2. Secondly, is there a tool or way I can convert the SQL Express datab ...Show All
.NET Development WSE 3.0 "Could not load file or assembly"
I've built a VS2005 webservice using WSE 3.0. I'm trying to deploy it on a local development server which has .net 2.0 framework installed and the administration version of the wse 3.0 runtime. I get the following message when viewing the asmx file in a browser: Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad3 ...Show All
SQL Server How can I configure sql mail in sql express?
is that possible You asked about SQL Mail, thats a specific feature of SQL Server and it does not ship in Express. This is also true for Database Mail. The current version of express has as a reporting solution the report controls that are part of VS. An express version of Reporting Services will be made available, but its not part of Sept CTP and I am not sure if it will include sending mail ...Show All
Windows Forms How to identify the acutal row ?
I have an dataset with some tables in it. I'm binding one of the tables ("Accounts") to a ListBox, set the DisplayMember and ValueMember. Everything works fine. When i klick on the Listbox, i change the Itemindex and maybe somewhere the actual row of dataSet1.Accounts.Rows ... my question is, is ist possible to find somewhere in the dataset the (in&nbs ...Show All
Visual Studio Team System Build Target with parameters
Hello all ! In my ".proj" file, I am each day deploying the source I have built on two different web servers. And for each of them I have some configuration to do. So currently I have something like : < Target Name = " AfterCompile " > < Web.WebSite.Create Description = " $(WebSiteName) " Path = " $(WebDeployFolder) " HostName = " $(DeploymentMachine) " Port = " $(WebSitePort) " /> < Exec Command = " rd /S /Q $(WebDeployFolder)\$(WebDeployName) " /> < Exec Command = " rd /S /Q $(WebDeployFolder)\ ...Show All
.NET Development single transaction between different methods
I need to run a single transaction on the single database (sql 2005) between several methods (.net 2.0, c#). I made required preparations: cn.Open(); // connection SqlCommand mySqlCommand = cn.CreateCommand(); SqlTransaction mySqlTransaction = cn.BeginTransaction(); mySqlCommand.Transaction = mySqlTransaction; mySqlCommand.Connection = cn; then I tried to pass to each method open connection (cn) and sqlcommand, but at some point (when I tried to delete something using mySqlCommand.ExecuteNonQuery(); ) I ran into the situation when system says that open datareader (it's true according to system business log ...Show All
Visual C# c# ide - cannot use brief or emacs emulation
According to the c# documentation the IDE should contain brief- and emacs emulation. On my system I miss all keyboard functions related to these emulations. I tried to enable it in the IDE-options but neither BRIEF nore EMACS show up in the keyboard options. I use the german c# Werner, Are you using C# Express If so, you should download and install VC++ Express as well. The keyboard schemes needed to start the emulations are not included in C# Express. Installing VC++ Express will install them and C# Express will be able to use them. If you are not using C# Express or this doesn't help, please le ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DxDiag shows missing files after .Net 2.0, Oct and Dec 2005 SDK.
After installing the .Net Framework 2.0 and the Oct and/or Dec 2005 SDK, the DxDiag utility shows that some files are "missing". DxDiag notes on the DirectX Files tab: " Several files (system.dll, Microsoft.DirectX.dll, Microsoft.DirectX.dll) are missing! " These files are present in the GAC and they coincide with the files from the .NET Framework 2.0 and the October and December 2005 versions of the .Net 2.0 beta versions of Managed DX. system.dll - .Net Framework 2.0 (2.0.0.0) Microsoft.DirectX.dll - October SDK - (2.0.900.0) Microsoft.DirectX.dll - December SDK - (2.0.0 ...Show All
Software Development for Windows Vista WWF cons and pros
Can someone enumerate the advantages and disadvantages of Microsoft Windows Workflow Foundation Thanks :) Sorry about that, forgot the link portion of it! http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=310867&SiteID=1 ...Show All
Visual Studio Express Editions Vb .net vs. vb express
Hello, I own Visual basic .net and was wondering if and why is should get express edition what are the real atvantages Korab - To add to what Josh said, you can see a rough feature comparison between the Express and Standard versions of VS2005 at http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx . Thanks, Luke Hoban Visual C# IDE Program Manager ...Show All
Visual Basic Problem about MSI
I logged on XPSP2 with user in group Administrators. After compile as release MSI file and try to install from folder DISK_1, this error occured. "Error 1305. Error reading from file: D:\My Prog\Output\DISK_1\My Prog.msi. Verify that the file exists and that you can access it." But when I copied and install this file from Desktop, it's ok, What's happen My PC have Kaspersky AV and MS Antispyware (Beta1). PS. How to post picture in this board Oh! sorry I forgot, I use Visual Installer 1.0 from Microsoft to make MSI installer. ...Show All
