dotnetaladdin's Q&A profile
SQL Server Loading Dynamic Images
I have a tabe that contains the name of images ex: image1.gif etc, all pictures are in the same folder, and they can be reached also with URL like http://ImageServer/Folder/image1.gif . how can I add this image to my report. any help would be greatly appreciate Hi, I have the same problem and I have configured the unattended execution account as specified in BOL. I'm using expression to get the correct i ...Show All
.NET Development Pointer in c#
Hello Is it possible in C# to get a pointer of a objects property Like object mypointer = InvokeOrWhatElse(TESTClass.Text) Thanks Tony_ If I'm reading this correctly, you want to get a pointer to the actual code behind the property. The most obvious solution would be to have a delegate, however you cannot have a delegate over a property -- only over methods. If you really need to get the address ...Show All
Visual C++ std::string Construction
I have created a standard C++ Win32 Console application in Visual Studio.NET 2005. The code is as follows:- // StdTest.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <string> int _tmain( int argc, _TCHAR* argv[]) { std::string s( "Test" ); return 0; } Building and single stepping this code in Debug mode is fine and the varia ...Show All
Visual C++ Reverse Digits in C++
Dear C++ experts, I need help with this program: Write a complete C++ program that reverses the digits of a given positive integer. For example if the user enters a positive number 123456 , your program would print 654321. Kind Regards, Ahmed Mahdy This sounds like a homework assignment: you'll probably learn more and find people more willing to help you if you try to solve it yourself a ...Show All
SQL Server What port does sqlexpress listen on?
I need to set up my router correctly, but can't find what port sql express listens on. Can anyone help Thanks ... Ed ...Show All
SQL Server Slowly Changing Dimension performance
I'm getting exceptionally poor performance from the Slowly Changing Dimension transformation. I get thousands & thousands of buffer manager info msgs when I use it. My machine isn't memory constrained, nor is the SQL Server. SSIS seems more obliged to spit out these msgs than actually do any work when I use the SCD. Any ideas Information: 0x4004800C at Provider3, DTS.Pipeline: The buffer manager detected that the ...Show All
Visual Studio Team System B3R upgrade to RC issues
ok, since it looks like I'm in for a long day I figure I'll just make a general post for all the issues I run into. The one I'm hitting now is in the upgrade document it says to install SQL Server update KB914595 - that its available on the web and on the install media. There is no KB914595 on the install media - only KB912838 and KB913393. Nor is it available at the link given in the document - http://go.microsoft.com/fwlink/ linkid=62015 ...Show All
Visual Studio Problem with RemoveDir and MakeDir
Hi, I've got a simple MSBuild project that looks something like this: <ItemGroup><MessageFiles Include="..."><Out>...</Out></MessageFiles></ItemGroup> <PropertyGroup><IncDir>foo</IncDir></PropertyGroup> <Target Name="Clean"> <RemoveDir Directories="$(IncDir)" /> </Target> <Target Name="Build" Inputs="@(MessageFiles)" Outputs="@(MessageFiles->'$(IncDir)\%(Fil ...Show All
Visual FoxPro BLINK
Looking at the result of DISPLAY STATUS command I found that my "BLINK" was ON. I cannot find anywhere in the help any mentioning of it. I am very much interested in exploiting this property, I assume it is a property somehwere My hunch is that if blink is on for let say a textbox then the color of this textbox will change rythmically or something. There was a comparable property in Visual dBase though I've never used it ...Show All
Visual FoxPro VFP 8.0 and Acrobat PDF Writer
Hi, We have an application developed in VFP 8.0. Our clients are having a problem while printing reports to normal printer AFTER they have printed to an Acrobat PDF writer and created a PDF file. The reports print fine when they send it to a normal printer without sending it to a PDF writer. Subsequent to sending it to a PDF writer and creating a PDF file, the reports throw an error saying "File Not Found" when printed to a normal printer. This ...Show All
Visual Studio Team System How do I install controller & agent ?
I must be blind or thick but I can't find any way of installing the agent or controller in Beta 3 Refresh. I'm sure I read something about this somewhere. Can someone please point me to the right place Thanks It's not just you. This is still confusing to me too. Is there a way to evaluate the controller and agent components integrated with beta refresh 3 through my MSDN subscription I'm confused how the product mentioned in t ...Show All
Windows Forms in c# (.NET) how can link to another Html page
I have written a dll (with c# langage) to put in HTML page (<object classid="http://prog.dll...>) Now, this dll need to link to another HTML page. What is the command (class... method...) make a jump to another HTMLK page. For more precision :  ...Show All
.NET Development Anyone know how to link the text boxes to the database
I have 6 Textboxes...Job Location, Job Number, EMP ID, Equip type, Equip Brand, Equip ID.....Now i want to enter the data for these textboxes and have it entered to the database table after i click the button submit entry this table is called show status with the field names the same as the textboxes...do i just work with the submit entry button or do i have to code all the individual textboxes Please HELP!!!...does anyone know how to d ...Show All
Visual Studio Team System Remove Work Items from template
When i create a new project based on the Agile process template, i get a list of about 15 work items. I don't want these work items in the project every time i load them. I don't consider them part of the project itself. Since you can't delete them once they are created (i know/understand the reasons) is there any way to delete them from the template first, so when new projects are created, i don't have to go through and close all of them Than ...Show All
Visual Basic Seperate Class Library into multiple dlls
Hi, We're upgrading from VS2003 to 2005 and I have a simple question: We have a class library with several classes in. If I change one class I would like to be able to compile that into its very own dll to ease our deployment issues. I don't want a seperate project in the IDE for each class but want the ability to only change one class and just upload those changes to our server instead of the whole projects output. So to summarise: I want ...Show All
