Kelly Craven's Q&A profile
Visual Studio Express Editions Class DLL for use with FoxPro
Hi there, I know that I can use Visual Basic 6.0 to create a custom Class Library for use with Visual FoxPro 9.0. Is this possible with Visual Basic 2005 Express If not, is this possible with the full version of Visual Basic 2005 I am just learning to use Visual products and most of what I know are from reading articles and posts. Thanks for the help. -PerryL7 Hi, Please go through the below FAQ link which m ...Show All
SQL Server SSIS Portability
I moved an SSIS Package from a computer A to a computer B. I opened it on B. A number of tasks got the red bullet, obviously because the Connection Managers were no more valid. One could have expected that if the names of the servers, databases and tables were identical on A and B the Connection Managers would remain valid. Not so I’m afraid. I tried to Edit one of the Sources in order to link it to the new Connection Manager. After ...Show All
Visual Basic Listbox update problem - easy one, i guess
This should be an easy problem, i bet there is someone who can help me. I'm a begginer, so thanks in advance! I'm working in VB 2005 Express. The problem is: in one form there is a listbox with a MS Access database source, and in the other form si a datagridview throug which users change that particular data. Datagridview control works and updates perfectly, but how can I update (or refresh ) listbox in the first form after the changes have b ...Show All
Visual Studio subreport links
Hello all, I have a report with a subreport. I added a subreport link which links to a database field on the main report and a parameter field on the subreport. When I run the report, I set the database logon for the main report which got everything ok. However, I am prompted to enter the value for the subreport link. Is this the default behavior Why would I need to set the value for the linked field when it is linked to the main report's d ...Show All
Software Development for Windows Vista hi
Hi all, Several samples show how to exchange data between host and workflow: define an interface with DataExhangeService attribute on it, implement the service and add the service to the workflowruntime (of configure in web.config). In my state machine I would like to be able to read and write a dataobject in every state. The object I would like to be able to read and write is passed at startup of the workflow instance as a parameter. ...Show All
Visual Studio 2008 (Pre-release) programmatically clicking a button?
is there a blessed way to programmatically simulate a button click so that the button acts as though it's been pressed perhaps sending a mouse click to the button call button_click method like, Mybutton_Click( null , null ); ...Show All
.NET Development Unwanted promotion using TransactionScope
Hi, I wanted to test System.Transaction and using TransactionScope. So I wrote a little factory class which has very basic CRUD functionality. One of it's methods is CreateName: public static Name CreateName( string nameValue) { using ( SqlConnection connection = new SqlConnection( Properties. Settings .Default.TestDB)) { return Crea ...Show All
.NET Development Possible bug? FileIOPermission failed
I think the following code should throw an SecurityException if I run the code from a network path. But it does not. try { FileIOPermission perm = new FileIOPermission(PermissionState.Unrestricted); perm.Demand(); } catch (SecurityException ex) { MessageBox.Show("Sorry, you can only run this application from your local disk.", "Security Error", MessageBoxButtons.OK, MessageBoxIcon.Er ...Show All
Smart Device Development Binding an ArrayList to a listbox. A speed/performance question.
I have a list of data which I am loading into an Arraylist. There are some 2500 items. To bind this arraylist to the listbox this takes approximately 20 seconds, perhaps longer. I need to accelerate this time to bind, are there recommended techniques for this Is there a better way to use a listbox Thanks! If number of items is above ~200, the only control you could really bind to is DataGrid as it would only fetch visible rows fr ...Show All
SQL Server ?? Turning Off TCP/IP Client Has No Effect ??
Hi Everyone, I was doing some testing with client configuration and I'm seeing something I don't understand. Let me explain the setup. My setup involves a single machine running "SQL Server Express 2005". As you probably know, SSE includes the "SQL Server Native Client". I run the "SQL Server Configuration Manager" and under the "SQL Native Client Configuration" | "Client Protocols" ...Show All
Visual Studio Install failure on Visual c# 2005 express
Have tried both the bootstrapper and the downloaded image and both fail on installing Visual c# 2005 express. I have full licensed version of Visual Studio 2003 and no other beta versions. Tried installing on three different machines and all fail at the same point. Machines are all running XP Pro SP2 (licensed), all are above recommended spec, all Intel P4 chips and all with a minimum of 512mb ram (and plenty of hard drive space). I'm start ...Show All
Visual Studio Consuming MSSCCI provider from custom editor; problem with SccInitialize
Hi I'm trying to write an editor (in C#) that would be able to connect to source control using MSSCCI, much like Visual Studio does. I've started by importing SccInitialize method from the VSS plugin C:\Program Files\Microsoft Visual SourceSafe\ssscc.dll. I can call SccGetVersion() and it works fine, but when I call SccInitialize, it returns -15 (#define SCC_E_NONSPECIFICERROR -15). SccInitialize populates and returns lpSccName (puts " ...Show All
.NET Development Plans for Nullable types in 2.0 Typed DataSets?
Is the support for Nullable types in 2.0 Typed DataSets a feature that has the potential to make it into the RTM, or was this cut I have seen some stuff in the Data Team's blog about that functionality but they are all fairly old posts. I am exposing Nullable<DateTime> properties on some of my Business Classes, but am unable to blindly pass a null value into a datetime field in a Typed DataSet (defined as datetime, set to maxOccurs ...Show All
Windows Forms Dropdownlist in Datagrid
hi, i am a newbie here....i have problem when i try to add a dropdownlist in datagrid...here is the btnSave_Click event handler code...what i am trying to do is that when i click on this "btnSave" button..the value tat i've chose in d ...Show All
Windows Forms ToolStripContainer and MDI
Is it possible to use ToolStripContainer in an MDI application It seems that the ContentPanel does not have the IsMdiContainer property and thus can not be parent of an MDI child. Any work-arounds When you add an MDI child form to your main form by setting the MdiParent property (childForm.MdiParent = MainForm), a lot more is actually going on under the hood. The MainForm creates a new child window of class Mdi ...Show All
