Eric Geil's Q&A profile
SQL Server SSIS Requests...
May be it's too late, but I think this requests could be scheduled at least for a SP1 if it's not possible for the RTM. 1) Execute Task without debugger: it would be very nice to be able to execute a single task without going in debugging mode. Just as you would ask "Start Without Debugging CTRL+F5" but for a single task 2) Customize default properties for task and component: when you drag a task on the package you get a default value for the ...Show All
SQL Server Error: The task with the name "Data Flow Task" and the creation name "DTS.Pipeline.1" is not registered for use on this computer
Hi, I am trying to create a simple BI Application for SSIS. In Visual Studio 2005 I just get a Data Flow Task from the toolbar and add it to the project. When I double click it I get the following error: The task with the name "Data Flow Task" and the creation name "DTS.Pipeline.1" is not registered for use on this computer. Then when I try to delete it it gives this other error: Cannot remove the specified it ...Show All
Visual Studio Express Editions Need help with for and pictureboxes
I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxio ...Show All
Windows Forms ping
i want to ping a given IP or URL address from within my software i cant find any command to do this - anyone know of one try this. ... ======================================= // comments : Dont forget to import System.Diagnostics // Output  ...Show All
SQL Server SSIS thinks an invalid expression is valid
I have put the following invalid expression: @[Metadata ::ValidStream == TRUE (note the lack of a closing square bracket) into a precedence constraint, clicked the "Test" button and got the message "Expression validated successfully". Can anyone replicate this -Jamie Maybe an IDW16 issue. On IDW15 (all I have to hand) it fails as I would expect- Attempt to parse the expression "@[User::FF" failed. The token "@" at line number "0", ...Show All
Visual J# Any possibility of supporting newer JDK features?
I like J#, and find it a great development environment, and the language support is pretty good. But the JDK is ancient... It drives me nuts, every time I go to use a standard Java class, I find out that the methods I'm used to using aren't implemented, or the whole class doesn't exist. This is true for everything from basic classes (like BigInteger and Date) all the way through to complex stuff (the security & Crypto stuff is re ...Show All
Visual Studio reinstalling 2003 debuggers
Howdy! My debugger stopped working! I can build a project, but then the debugger pops the Access denied message about not being in the debugger users group. Obviously, I am--and have been--since I installed the product a year and a half ago. I tried repairing the installation, but that doesn't help. Is there a way to reinstall just the debugger Thanks, --Chris FYI..... Just finished up with support @ Microsoft. ...Show All
SQL Server How connect SQL server 2000 with c#.net .....?
Hello masters, help me yaar i am using dotnet 2003 and SqL SERVER 2000. BUT UNABLE TO CONNECT DATABASE using dataAdaptor(design time ) or sqlconnection any can help me gs i am working on windows 2000 prof O/S i have just downloaded the sqlserver 2000 form the net for installing this i have used the command in dos prompt... C:\Program Files\Microsoft Visual Studio .NET 2003\Setup\MSDE\setup sapwd=logic securitymode=sql aft ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Direct3D and DXVA
I'm using DirectShow and VMR9 in renderless mode to draw video into a texture which I can then composite via Direct3D. However, I can't seem to figure out how to get it to work with DXVA. I can allocate DXVA format _surfaces_ in my allocator/presenter, but I can't seem to create DXVA _textures_. Does anyone know how to either create DXVA textures, or render DXVA surfaces via Direct3D Thanks in advance for any help,   ...Show All
SQL Server Problem with MsDtsSrvr.ini.xml config
All, I have changed the location of the MsDtsSrvr.ini.xml file and the same updated the changed location in registry key SOFTWARE\Microsoft\MSDTS\ServiceConfigFile. After making the changes I restarted SSIS. When I tried viewing stored packages using SQL Server Management studio, I was not able to see File System folder or MSDB folder When I checked error log, the below message was recorded. "Microsoft SSIS Service configuration ...Show All
Software Development for Windows Vista installing WF error - service pack required
I have installed released version on VS.net 2005 on my PC running on windows 2000 professional witrh Service pack4 installed. I have downloaded Microsoft R Visual Studio R 2005 Extensions for Windows R Workflow Foundation Beta 2. when i try to install it, it gives me follwoing error. windows 2003 service pack 1 missing . I tried to install the wanted service pack but that could be installed as my OS is different from windows 2003 ser ...Show All
SQL Server Cannot compare data types of System.Int32 and System.String. Please check the data type returned by the filter expression
I have this filiter on my table in SQL Server Reporting Services 2005: =CInt(Fields!FeeGoal_AZ.Value) != 0 I get this error when trying to preview the report: "Cannot compare data types of System.Int32 and System.String. Please check the data type returned by the filter expression." I am not sure why it's comparing a string here. The data type for FeeGoal_AZ in the database table is Bigint ...Show All
Visual Studio Tools for Office Making help files
Hi all, I'm looking for good way of arranging information at work. I think to do that like all the help of any application. Is there any components that use the office softwares for arranging files like the help system of any software. I want to make like a library. Regards... I think the exe file name changed to Htmlhelp.exe. Try downloading it from http://msdn.microsoft.com/library/default.asp url=/ ...Show All
SQL Server Replication Isues After upgrading subscriber to 2005
Hi There A while ago i migrated a 2000 database to a new instance of sql server 2005 and succesffully setup replication from a 2000 publisher. However to experiment i took an existing 2000 instance with a subscriber databases and upgraded the default instance to 2005. (Upgraded from 2000 Enterprise to 2005 Enterprise) After the upgrade the setup logs were all successful, i also run upgrade advisor before and made sure there were no issu ...Show All
Visual C++ how do the vc compiler compute sizeof(... ) ??
there are two simple structs in my prog: typedef struct _testS01 { int a; char b[2]; char c[2]; } testS01; typedef struct _testS02 { char b[2]; int a; char c[2]; } testS02; when computes each sizeof(... ) macro, i get two different values: sizeof(testS01) is 8,seems right here, but sizeof(testS02) is 12 ! who know such trick of vc compiler The compiler knows the size ...Show All
