Parpudi's Q&A profile
Visual Basic how to add a flash ocx
can somebody help me on how to add a flash ocx on a vb2005 project I already add the flash ocx on the toolbox but the a error message appears stating "the activex control is unregistered!" Tanx... it could mean 2 things. 1) you need to register the control using regsvr32 2) the control your using isn't meant for redistribution to developers, you need to get a license / control that's unlocked. ...Show All
Visual Studio Express Editions How to add Visual Foxpro Database into Visual Basic Express 2005
I have just install Visual Basic Express 2005. Only database from MS Access and MS SQL can be link to this VB. Can any one tell me how to link to Visual Foxpro 6 database Thank you. The data tools for the Express editions do not support Visual FoxPro. Only Access and SQL Server are supported. However, it is still possible to connect to a Visual FoxPro database using ADO.NET code. ...Show All
Visual Studio looking information about debugging with VS
I'm looking for informations about how VS toggles in debugger mode and it's relationships with mdm.exe Is there any paper about this topic A good place to start to learn more about the VS architecture and extensiblity is the Visual Studio Extensiblity Center ( http://msdn.microsoft.com/vstudio/extend/ ). MDM.exe is no longer shipping and has been removed in VS2005. HabibH. ...Show All
Visual Studio 2008 (Pre-release) Error while trying to serialize Cyclic Dependencies
I have a following cyclic dependencies between two classes in my object graph: [DataContract] [KnownType(typeof(Person))] public class Company { [DataMember] private IList employeesList; private IList EmployeesList { get { &nbs ...Show All
SQL Server The value could not be converted because of a potential loss of data
During import from CSV i am getting following error "The value could not be converted because of a potential loss of data". My CSV file contains a column "years" and i have selected datatime in the import wizar. Can I scape from this error and import all my data. Waqar You are probably attempting to do a conversion on a value that cannot be implicitly converted. Use the error output to fi ...Show All
Visual C# Form Instances
Ok. I have three forms. What I would like to know is when I make an instance of Form1, how to make it accessible from any form without having to create another instance. Form1 myForm = (Form1 ) Application .OpenForms[ "Form1" ]; myForm.Show(); If you have Form1 open and (maybe hidden, whatever).. the above will show the original instance of Form1. ...Show All
Windows Forms Code Validation
Hello, I need some sound advice, here is the scenario: I have a mdiChild form that contains a button that launches a owned (owned by the mdiChild) form. My questions is: What is the most effective way to pass data from the owned form to&nb ...Show All
Smart Device Development doubt in Bootstrap setup.exe
Hi , I created a setup package for netcf.When i install it from desktop using Bootstrap setup.exe it asks wheather to install framework 1.1 when net framework is not found.I should not get this message but the framework should be installed silently without giving confirmation message. how can i do it This is wrong forum to discuss desktop framework installation. Please check out forums/NG for deskt ...Show All
.NET Development Process.start not behaving as expected
This bit of code produces a blank message box : Dim MyProcess As New Process Dim startInfo As New ProcessStartInfo( "notepad.exe" ) MyProcess = Process.Start(startInfo) MsgBox(MyProcess.MainWindowTitle.ToString) Any sebsequent attempt to access any MyProcess property comes up with nothing. This produces a message box with the expected text: Dim MyProcess As New Process Dim startIn ...Show All
Smart Device Development System.Security.Cryptography.RSACryptoServiceProvider error
I am trying to use this class on my project for POcketPC.I have successfully used the SignData functions from this class but the Encrypt() - Decrypt() [Asymmetric encryption] is not giving me the correct result after decryption - it doesnt throw up any error or exception. Please comment on what am I doing wrong. Here's the code: //RSA with PKCS#1 using System; using System.Collections.Generic; using System.ComponentModel; using System.D ...Show All
Software Development for Windows Vista How to load persisted workflow from another process?
I am trying to explore loading a persisted, suspended workflow from another process. What I am trying is constructing the workflowinstance with the Guid of the persisted workflow (overload of CreateInstance). Then I call resume on it. Resume executes with no exceptions, but I am not seeing any of the subsequent activities get called after the Suspend that the workflow was on when it was persisted and the app was shut down. The workflow is a s ...Show All
Visual Studio Team System Query for items once assigned to me?
Is there a way to write a query that returns all items that have had ever been assigned to me, regardless of whom they are assigned to now That is, all items that have ever had anything to do with me. Just use ever operator in UI or OM:<br> ... where [Assigned to] ever @me<br><br> It is named "Was Ever" in query UI:<br><br> And Assigned To Was Ever @Me ...Show All
SQL Server Extracting documents out from a varbinary(max) field?
I know how to use the OpenRowSet to read a document into a varbinary(max) field from a file. But, how do I get the data back out from the varbinary(max) into a file so I can use a viewer. ...Show All
Visual Studio Express Editions Are default *.exe and source directories different than in VC6
Hi When I begin a new solution (or more likely a problem) its directory structure is strange. Source is in solution/solution/solution.cpp but *.exe goes into /solution/debug directory. Why is this different from previous versions. And how to change default behaviour to a proper one. Regards LM You can always specify where output files go. Take a look at the "How to specify where output files go" secti ...Show All
.NET Development .Net Programming for the MS Fingerprint Reader (DG2-00002)
Anyone have any idea where I would look for help in writing an application that communicates with MS Fingerprint Reader (DG2-00002) I cannot find any documentation on any of my searches. I know it comes with drivers and it's own builtin application but I want to use it for a special purpose and would not be using the apps that come with it. (Drivers probably!) Thanks, Rick Rick, I have the same ...Show All
