Software Development Network Logo
  • Architecture
  • .NET Development
  • Windows Live
  • Visual FoxPro
  • Visual C#
  • SQL Server
  • Game Technologies
  • Smart Device
  • VS Team System
  • Microsoft ISV
  • VS Express Editions
  • Visual Basic
  • Visual Studio
  • Windows Vista
  • Visual J#

Software Development Network >> virenkar's Q&A profile

virenkar

Member List

Alan Homer
miliu
Shai Zohar - FXM
JohnLudlow
Kohler
Alexey_
Fabián Imaz
David Szarenski
Rob Volk
MoG_WhiteStone
SamV
4lb3rt
Dooshan
Arturo Moreno
PhotoJoe
easot
Atul Ganorkar
rkocur
Ron Kaps
Suki Baby
Only Title

virenkar's Q&A profile

  • SQL Server SSIS "object" datatype

    Can I use "object" datatype for the Global Variable inside ScriptTask code to save SQLConnection value which I 'am getting from my custom C# assembly. Another words, can I assign SQLConnection to the  Global Variable which defined "object" datatype Thank you, Vitaliy ...Show All

  • Visual Studio 2008 (Pre-release) ANN: View a SCADA demo using WinFX on the Internet

    The XAML for the following demo was authored in the Mobiform XAML Designer. It supports the November CTP. The demo is a SCADA type demo of a paint mixing machine. Give it a try and mix your favorite color! http://www.mobiform.com/demos/paintfactory/webpaintfactory.xbap Aurora is available as an embeddable component for XAML authoring in your application. Mobiform is also available to help with your WinFX development, contact us for more details. ...Show All

  • .NET Development Internals of remote object creation

    Hi all, When you have a code segment like the following: ChannelServices.RegisterChannel(new TcpClientChannel()); RemotingConfiguration.RegisterWellKnownClientType(typeof(TransactionMaintenance), "tcp://localhost:1235/TransactionMaintenance"); this.transactionMaintenance = new TransactionMaintenance(); I wasn't able to find a link between the type registration and the object instantiation. If you inspect the IL for this code the object instantiation is done with a newobj opcode just as would have been done for a local object. How does the CLR know that it should instantiate a remote class instead of a local one Thanks in advance. Alfred Gar ...Show All

  • SQL Server New SQL Server 2000 worm?

    Hi all. My SQL Server 2000 SP4 installation running on Windows 2003 server (SP1, all patches current) has been infected TWICE by something that Sophos can't detect. The symptoms are that an account called SQLsys is created on the machine and is made an administrator. A service called "ApptoService spoolsrv" is created. An executable called syss.exe is also created in a few places. After infection the machine immediately starts attacking other computers on the network. I had Windows Firewall running, with ports open for SQL server and Remote Desktop. I ran the MBSA, it didn't find anything open. I even ran the beta MS web tool for ...Show All

  • Visual Studio Express Editions Linking Problem

    I hope this is an easy question. I've a lot of unresolved sybmol error messages while linking my executable. I think that I probably forgot to add the additional libraries that I wish to link against. How and where do I tell VC++ express that I would like to link with my libraries I searched in the IDE for awhile, and I couldn't find it. Thanks!!! Take a look at http://msdn2.microsoft.com/en-US/library/ba1z7822(VS.80).aspx for adding your libraries to the linker command. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server Replacing sqlserver 2000 with sqlserver 2005 express

    I have an app that uses a sqlserver 2000 jdbc driver to connect to a sqlserver 2000. Is it possible to do a direct replacement of sqlserver 2000 with sqlserver 2005 express just by reconfiguring the app to point to the express The app would still be using the sqlserver 2000 jdbc driver to try and make the connection. If that is a possibility, what can be some differences in the configuration Previously with 2000 the config information I entered is: server name: "machinename"( or ip). I've also tried "machiname/SQLEXPRESS" DB name: name of db instance port: 1433(default) user and pass. My attempts so ...Show All

  • Visual Studio Team System Code coverage / signed assemblies / unit tests fail

    Hi, I'm using VS 2005 RC1 and having problems with a unit testing/code coverage/signed assembly combo meal. I have unit tests that succeed against the assemblies without code coverage turned on. The assemblies are all signed with a common key file. When I turn on code coverage all my unit tests fail with a: "Strong name verification failed for the instrumented assembly 'Business.Entity.Assets, Version=1.0.0.0, Culture=neutral, PublicKeyToken=522bbccfa70f591f'. Please ensure that the right key file for re-signing after instrumentation is specified in the test run configuration." I've set the re-signing key file in the localtest ...Show All

  • Windows Forms Data Disappeared

    I just recently downloaded the TaskVision app and I've noticed that if you let it sit for a while in the taskbar, the data disappears.  Is this a known bug or am I missing something obvious here ...Show All

  • .NET Development OleDBCommand: what might be the problem?

    Sorry you all if I bother you lately.  I'm new to c# that's why I look out for assisatance often.  I'm trying to insert user name and password into an access database through a create button.  However, anytime I click on the create button there is an exception which suggests that there is a problem with my sql insert statements.  I need help to ascertain what the problem is and how I can rectify that problem.  private void btnCreate_Click( object sender, System.EventArgs e) { OleDbConnection sgConn = null ; string sgConnStr = "Provider=Microsoft.Jet.OLEDB.4.0;"+"Data Source= C:\\Documents and Set ...Show All

  • Visual Studio Express Editions Command Line in C++

    Hi, Guyz, I have encountered a problem, i have installed VS C++ 2005 Express Edition on my computer and have realised that there is not 'devenv.exe' that would go with it or with the PSDK that i have downloaded too. if anyone knows or had similar issues on how to call / build / compile etc projects in VS C++ 2005, please post the commands that are used, or links that would tell me how. It seems to be a simple thinkg, but i just cannot get the answer, i was looking for so long on the web. Any help would be appreciated. Many thanks, in advance, Dmitry You can use the compiler directly from the ...Show All

  • Visual Basic Pointers In VB?

    Is there anyway of converting the following C# code to VB Vector3* myVector3 = (Vector3*)&someMatrix.M31; Thanks If Vector3 is a struct and M31 is a float, then both are value types and you need "real" pointers (using * and &), which you can only do in C# and C++. VB does not support this. Your best bet is to write these parts in C# and then reference the C# assembly from the rest of your VB class library. ...Show All

  • Windows Forms Threading

    Im working now with a chat application using Windows application in VB.Net. If i keep a*space space*point at the start of the thread, m getting my code executed hassle free. If i dont, m getting an error in a message box stating "Object reference not set to an instance of an object". Can anyone help me out  Advanced Thanks It sounds  ...Show All

  • .NET Development Updating Access from Data Table - slightly confused

    I'm using vb2005 to create a front end to an access database. Being new to this I'm slightly confused over what the wizards will create automatically as opposed to what I have to code. I've used the table adapter configuration wizard and specified that I want it to create methods to update a table called 'Categories' in the database. This is a simple table with a text field for the category name and an autonumber field (CategoryID) as the primary key. Now, I've read the supplied help info and a few newgroup posts about how to update a table row containing an autonumber field by using the RowUpdated event of the adapter class. The code exampl ...Show All

  • Visual Studio 2008 (Pre-release) ExpertSystemLinq

    ExpertSystemLinq could have a set of extension methods that provide forward and reverse chaining and ruleset management and other primitives for building expert systems... ...Show All

  • Visual Studio Using parameters in Local Mode

    Hello there. I am using Visual studio 2005 and am trying to create a report with parameters. The report gets the data from a access 2003 database. Basically what happens is I have a reportviewer on my form. After the report runs, I have a textbox where a person can enter a date. When I run the project I get an error in my code that says "InvalidCastException was unhandled. Unable to cast object of type 'microsoft.winforms.reportparameter' to type 'system.collections.generic.ienumericable `1 [Microsoft.reporting.winforms.reportparameter]'. Here is my code Below on the button click" Private Sub Button1_Click( ByVal sender ...Show All

©2008 Software Development Network