monkeydust's Q&A profile
Software Development for Windows Vista ATI fails to load driver on 5231 build
ATI Catalyst Driver failed to load on 5231 build; which actually works great in Beta 1 release. Any clue how to tweak this to work For more info, check: http://www.msvistablog.net/comment.php comment.news.96 Thanks Yes, install the windows XP driver and edit the registry to turn on the Aero glass interface. ...Show All
Visual Studio 2 Patterns for single Crystal Report (rpt) file
Hi everybody, Is it possible to display two different pattern of reports and must be on separate pages First Page displays a summary, second page displays details and other info. Having problem doing this placing except for company details on page header and the rest on the Details part of the report. Pattern: First Page: Company Logo Company Name Company Address Statement of Account Statement Date: (system date) Period Covered: (date from filter page) Control Number (data from db1) Company: (company name from db2) Address: (address from db2) Total Balance ( ...Show All
Visual Studio Partial rebuild of a target?
Hi I'm using batching on a custom task to call the GNU C-compiler to compile a bunch of files, something like this: <ItemGroup> <SourceFiles Include="*.c"/> </ItemGroup> <ItemGroup> <IntermediateFiles Include="@(SourceFiles->'$(INTDIR)%(Filename).o')" /> </ItemGroup> <Target Name="Compile" Inputs="@(SourceFiles)" Outputs="@(IntermediateFiles)" DependsOnTargets="Clean" > <GNUCompile Tool="$(CC)" Arguments="$(CPPFLAGS) $(CFLAGS) -c %(SourceFiles.Identity) -o $(INTDIR)%(SourceFiles.Fil ...Show All
Visual Studio Team System license question
I'm not sure if this is the proper place to ask, but I can't find it on the Microsoft site... If we have a team of 8 developers, and we want to use the Foundation server instead of VSS for its extra features, and our developers all do a bit of architect/test/develop, will the cost be around $83,000 from the licenses (8 * 10k for Team System, and 3k for the server) Thanks.. Or if anyone could point me to a an email of a person who can answer this question, I'd appreciate it. Hi Filip, I'm the Product Manager for Team Foundation Server and I can help you out. Your estimate is correct based on the pure retail pricing of Visual Stud ...Show All
SQL Server Moving SSIS packages from one machine to the other
I have developed some packages in my desktop, which works fine. I tried to move the project from my desktop to laptop by just copying the whole project folder. When I open the package within the project, it used to validate each package and used to hang for a longtime (Due to connection string etc). As Jamie suggested DelayValidation = TRUE sorted that problem out, which means the package opens now without hanging. I still have problems with the migrated package. It lost the layout of my package. Also it lost the link between components. In other words I have got components scattered around without any green / red / blue lines betw ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Different results between REF and HAL devyce
Hi! When executing my pixel shader, results are ok. But when I execute with my recent new grpahic card Quadro FX 3400/4400 results are rubbish. Exactly what happens is that! In my pixel shader I have these four operations Output.weights.x = (1-frac2.x)*(1-frac2.y);\n" // 1 float output Output.weights.y = frac2.x*(1-frac2.y); // 1 float output Output.weights.z = (1-frac2.x)*frac2.y; //1float output Output.weights.w = frac2.x*frac2.y; // 1float output Using Devyce_REF results are for example 0.5625 0.1875 0.1875 0.0625 that its exactly what i'm waiting for, but using my grpahic card the results are quite differents : 0.56175613 0.19117355 0. ...Show All
Visual Basic My.Blogs Error - ProjectType value did not exist.
I am trying to install the My.Blogs sample. I am running VS2005 Pro on WindowsXP Pro SP2. The template installation fails with the error message: Installation stopped because the directory for the ProjectType value did not exist. The project type is invalid for your installation of Visual Studio. Is My.Blogs a beta2 only thing I am running release VS2005. Are there manual instructions for installing this via file copy Also: the error message suffers from poor design. Of more use would be something along the lines of "The project type 'inserttype' is invalid for your installation of Visual Studio, which I detect is: 'insert det ...Show All
Visual Studio Tools for Office Close word Document VSTO 2005
Good morning: My VSTO 2005 Word Solution already work. I already install application setup in another equipment and this working correctly. The problem is that when the user finishes the application word, giving him click in the x to close the document, the document close correctly, but when the user open again the document the combobox is blocked and the textbox too. When I deal process from task manager winword.exe, the document is unblock. Can I help me so that apllication word is not blocked Thanks... Sounds like there's some code in your document startup or databinding to the controls that's causing the problem. H ...Show All
.NET Development Performance degradation while migrating from .net 1.1 to .net 2.0
I recently converted one of my web application to .net 2.0 framework using the documented procedure. The migration happend with no warnings or errors. Now a performance test is showing a very steep fall (aroud 60 users) after the migartion. this is contarary to my expectation of an increased performance after migration. what could be the reason for this are there some specific places i should look at to improve the performance 60 users What kind of application is this, web-based I would suggest using a profiler to find out where the bottleneck is. The Microsoft CLR Profiler is freely downloa ...Show All
Visual Studio install sql or vs first?
What is the preferred order to install: .NET framework Sql Server 2005 developer edition Visual Studion 205 Team or does it matter Thanks Doesn't all of this get installed by default in the proper order if you select the proper components or does VS Team edition not come with SQL DE like pro does ...Show All
SQL Server How to do a SELECT on SP Result
Hi there, Problem: Having an old webapplication with dynamic build sql queries. Now the database changed completly because of new db model. Queries are getting much more complex now, so i put them into stored procedures. Now i want to work with the data in an application for sorting an filtering. All the 'WHERE' conditions are build dynamic within the code. For not modifying the whole application i would like to do something like: SELECT * FROM (EXECUTE sp_someprocedure) WHERE X = 1 Is there a way to realize this Thx for helping Hi, Just doing queries won’t work, althou ...Show All
SQL Server matrix issues
example rpt.. | Last year | this year | Resolution | Resolved | Closed | Cost | Resolved | Closed | Cost | | (qty) | (qty) &n ...Show All
Visual Basic Issue Setting Bookmark Background Color
I tried to edit the background color for Bookmarks thru Tools-Options-Environment-Fonts & Colors-Item Background with no success. Bookmarks should have a light blue background color by default which of course doesn't work either. I edited the background color for Breakpoints as a test and it worked just fine. Am I doing something wrong here or is this a bug in VB 2005 Professional You need to turn off the 'indicator margin' under tools/options->text editor->general to see the colours. You'll only see a small square unless you do this. ...Show All
.NET Development Circular Reference with Reflection.Emit?
I am having a small problem with circular references when building a dynamic assembly. Lets say I have class Foo and class Bar, which both take in an reference to the other. For example (C#): class Foo { public void test(Bar bar) {...} } class Bar { public void test(Foo foo) {...} } When trying to build this code with the Reflection.Emit classes, I run into this problem (marked with the ): ModuleBuilder module = {...}; TypeBuilder fooBuilder = module.DefineType("Foo", TypeAttributes.Public | TypeAttributes.Class); fooBuilder.DefineMethod("test", MethodAttributes.HideBySig | MethodAttributes.Public, type ...Show All
Windows Forms Transparent TabControl
Hi i have a picture box and a tabcontrol inside it, i need ro make the tabcontrol transparent so that the image of the picturebox can be seen through it. can you help me please. thanx TabControlEX can be set to Transparent (not really transparent but implements the same pseudo transparency as other controls). This is a modified version of System.Windows.Forms.TabControl. It's a lot of work to do it yourself. http://www.dotnetrix.co.uk/controls.html ...Show All
