RonDielhof's Q&A profile
SQL Server Table-valued user-defined functions
Is there a way to execute a table-valued user-defined function within SSIS - one that no only returns a "table" of values but also passes in variables to the udf Example of it in query form: DECLARE @Var1 INT SET @Var1=ID FROM dbo.dbtable WHERE Status = 1 SELECT * FROM udf_Foo(@Var1) Thanks. ...Show All
Visual Studio Express Editions Massive iostream errors
Hey, i'm kinda new to Visual C++ Express and i'm having a problem when I include iostream. I've installed Platform SDK and this is what I compile: #include <iostream> using namespace std; int main(){ cout << "Hello" ; return 0; } I get tons of errors from this: ------ Build started: Project: empty_project, Configuration: Debug Win32 ------ Compiling... 2.cpp C:\Progra ...Show All
Visual Basic Monitoring system messages?
Is there a way in vbExpress to monitor the system messages going between the tcpip input from the net to the displayed windows form I get the data I need now by reading the screen, but it would be much easier and faster if I could instead capture the input to the form before it went to the display. I would very much appreciate any suggestions. Thanks Dick R. Hi Jim W. I really appreciate the input. ...Show All
Visual C# Line spacing
Hi, How can we change the line spacing of the Font ( Graphics in Paint event) ! I know juste that there is Height but it is read only ! :/ Help :( When you create a font to draw with, you specify its height. TO draw multiple lines of text with different spacing than usual, you will have to break the text into lines yourself and place them on the screen with the spacing you desire. To get the height of th ...Show All
Visual Basic Reading the Propertys of an Word-doc in VB
Hii :) I wanna list all Word Documents in a directory, with author, title and so on.. so how could i read this data out of word-documents in visual basic There is a COM component called Dsofile.dll that will enable you to read document properties from Office documents. ...Show All
Visual Studio 2008 (Pre-release) When will the C# version of LinQ be ready for VS.NET 2005 RC0
I am very excited about LinQ and would like to use it asap. Since I have to use the VS.NET 2005 RC0 version to create demos, I would like to inquire when will the C# version of LinQ be ready for VS.NET 2005 RC0. Yes, I know that LinQ is already compatible with the VB version of the RC0 VS.NET release, but I would like to show Java programmers a flavor of what they are missing ! Well, considering the ...Show All
Visual C++ Problem using argv in main
Hello there, I am pretty new at this C/C++ I am writing a console program, and from what I read here, and around the internet is that the argv array in main() is supposed to hold any arguments entered on the command line... argv[0] is the name of the program, and argv[1] to argc is the arguments. So if I were to write a program that opened a file in binary mode. To run it I would type executable and then the file I want to open and oper ...Show All
Visual Studio Team System TFS source control storage area
Is TFS capable of storing versioned source code in encrypted form on disk Alternatively, could I use TrueCrypt to create an encrypted volume, and have TFS check out all my code to that encrypted volume See the following post by Adam Singer for how to do that. http://blogs.msdn.com/adamsinger/archive/2006/03/06/544656.aspx Buck ...Show All
Visual Basic HotFix did not solve my problem
I too installed the hotfix and I am using edit and continue successfully and I do not get the notify Microsoft message over and over, but alas, the problem that has plagued us most is still in place. When using the Visual Studio IDE (using VB), if we make the slightest change to a winform and then run the app, after returning to the app in design mode, we consistently get a big red x on our design surface that locks us out of the form. Accomp ...Show All
Visual C# Having Keyboard problems with Visual C# Express IDE
Hey Guys, I have VS2003 and wanted to try VC# Express but after couple of times trying to install/reinstall it to see if I get it fixed I have finally come to you for help. Once I go into a class file inside VC# Express I get no keyboard activity. The return key/backspace key/arrow keys do not move. I can type characters but I can not use delete/backspace/etc to fix it. I also have VS Web ...Show All
Visual Studio 2008 (Pre-release) getting Bamlexception
I am getting a baml exception every time a use a control inside my code behind file. For ex consider this xaml code : <Window x:Class="WindowsApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/avalon/2005" xmlns:x="http://schemas.microsoft.com/winfx/xaml/2005" Title="WindowsApplication1" Width="550" Height="400"> <Window.Resources> <!-- define the XML ...Show All
Windows Forms a simple question about datagridview
Hi all :) On a simple form there are some text box, for example 2. Now, by a simple button command, i insert in a database the value of the text boxes. On the same form, i have placed a datagridview, and im trying to display the data just after the insert... something like: [code=C#] string insert = "INSERT INTO myTable (column1, column2) VALUES ('" + textBox1.Text + "', '" + textBox2.Text + "')"; //SqlCommand code ...Show All
SQL Server Recovering SQL 2000 Database without the Log File not in clean disconnected state
We just had a hard drive crash here. We were able to copy off the .mdf file from SQL server 2000 from the drive, but not the .ldf (which was only 720k anyhow). When I try to attach the mdf to an SQL Server 2000 or 2005 server I get an error saying that the log file doesn't exist. Does anyone know a way to attach this not-cleanly-closed database file and recover the data (apparently the person decided that they need-not backup their databas ...Show All
Visual Studio Team System download visual studio team foundation server
I've been trying to install TFS for the past three days, but failed. Now I decide to start from scratch instead of updating here and there. I re-installed the whole OS, now I try to download TFS from msdn. But weirdly, it cannot be found anywhere in msdn. I swear I downloaded it two days ago from msdn, but somehow it just disappeared today. Can anyone give me some help on what is going on I just checked and fou ...Show All
Windows Forms combo box - how to prevent selectedindex change
I need help on this, how can I prevent user from changing the selection of item from the dropdown list what I am trying acheive is this, when user clicks the down button on the combo box or uses down arrow key, I want to be able track it and based on some logic I want to be able to disallow the user from changing the selected item. Thank you, Jesbert I'd rather populate the combobox with items ...Show All
