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

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

jsl

Member List

Robert_Scheffler
Raptor0001
TomM
Hamad
NemanjaTheLost
Ronak
Raj Amb
rich-75
nba1341
digital rebel
Saurabh
ASMK
Nat81
natX
Dante Shamest
wolfpack98
Rudolfh Bantim
ennisb
patel_mitesh
stridulence
Only Title

jsl's Q&A profile

  • SQL Server Adding Table to Dataset for SQL Server Mobile causes VS 2005 to lock up.

    I am running VS 2005 Professional Edition Windows XP profession with Service Pack 2 SQL Server 2005 Developer Edition. WHAT I HAVE DONE: I have a database running in an instance of SQL Server. I set this up for merge publication and then set up a SQL Server Mobile Edition Subscription to that publication.  After a few oversights I got everything working.  The Mobile database replicated just fine.  I went back verified all data was there.  Can make queries to it.   PROBLEM:  I set up a new dataset to use tables from the SQL Server Mobile database.  If I drag one of the tables to the d ...Show All

  • Visual C++ Question about interface method and implementation

    Hi All, I'm trying the Visual Studio 2005 Beta 2, especially for C++/CLI implementation in VC++.  I was wondering if someone could please help me with a question that I have. Any suggestions would be greatly appreciated. I've defined an interface like this: public interface class IMyInterface {     void TryAndTry(); }; and a class implementing this interface ref class MyClass: IMyInterface { public:     void TryAndTry()     {         Console::WriteLine("DONE");     } }; I've a test program that simply creates an instance of this class. When I com ...Show All

  • Visual Studio VSIP SDK : Some of the Context Menu items are missing

    I have created a tool through VSIP with the help of VSIP examples e.g. BscPkg, BscPrj, FigPkgs in .NET 2003 Now I am migrating my project to .NET 2005 using VSIP for 2005. I am successful in migrating it but some of the Context Menu items are missing.When I create a project through my tool, it is getting created successfully and all the basic functionalities are working. At Solution level the context Menu does not contain Build, Rebuild, Batch Build. After adding another project it does not contain Project Dependencies and Project Build order. However, If I add a projectcreated through BscPrj or a VC++ project then all the Menu Items are ...Show All

  • SQL Server How to create Merge Replication with latest update always from subscribers

    Hi , I am trying to create Replication Topology (Merge Replication) like below. Subscriber1 --> Publisher <-- Subscriber2. I have created both subscribers with Subscription Type as Server with Priority as 75. I am updating the Column A of Row_10 in Subscriber1 on time say 11 am. After i am running the Starting synchronizing agent from Subscriber1. The value propagated to Publisher now publisher contains the latest value in Column A. Uptonow the Subscriber2 is not synchronized with Publisher. Now in Subscriber2 also Column A of Row_10 is updated say at 11.10 am. Actually now Publisher contains the value from Subscriber1 fo ...Show All

  • Visual Basic Problem with Radio Buttons bound to Application Settings

    I am using group of radio buttons which are bound to user-scoped application settings. Problem is on runtime if I try to select some other radio button in the group, I have to actually click it twice to select it. It works fie if the radio button is not bound to settings. I tried using checkbox as well and faced similar problem. What is the reason for this lag in behavior and how can I fix this.   Thanks If you could show the code that is "binding" the buttons to the setting, i may be able to help.  ...Show All

  • Software Development for Windows Vista CallExternalMethod to Terminate a Persisted Workflow

    I have a sequential WF with a CallExternalMethod Activity attached. I am wanting to tell the host to terminate another persisted workflow. I have a method in the workflow codebehind that uses the SqlTrackingWorkflowInstance class along with SqlTrackQuery to return a specific workflowInstanceId from the tracking/persistence store. I am attempting to terminate that specific workflow from my current workflow. I know in beta2 it is not possible to directly cancel another workflow. I must create an interface to talk back to the host. I've done this, added the dataExchangeService to my host and added the new service to it. My ...Show All

  • Visual Basic Just wondering is it possible to change the default title of MsgBox?

    Is there a way to change the default *ugly* title of MsgBox Please don't take it wrong. I know that I can provide the 3rd parameter - but I have to do it on every call. Any ideas Hi, Defaultly the Application name is displayed in the title bar of a MessageBox if you don't specify a title. So if you want to change the default title, then change your application name. cheers, Paul June A. Domag ...Show All

  • SQL Server Help on replication from SQL 2005 to DB2/AS400

    I was trying to set up a replication process to move data from SQL 2005 to DB2/AS400. To get it started, I have create a simplest table (say, PERSON) on SQL 2005 server, and the same table (PERSON) on DB2/AS400. I have only one column SSN (of type int). I have journaled the table on DB2 end. I was able to have successfully configured publisher (on SQL 2005) and subscriber (i.e. a pushed subscription). I used transactional replication. And I also installed HIS 2004 to have DB2OLEDB ready. I was able to use query/insert/delete against table on DB2 based the linked server (that I created for testing purpose). I did a lot of reading on t ...Show All

  • Visual Studio Team System Error 32000 during Team Server install

       I installed the prerequisites: Sharepoint services, SQL Server 2005 CTP April on a new install of Windows 2003 Server Standard SP1. Around 99% through the install I got a 32000 error. I am using the Virtual CD tool to access the ISO image downloaded from MSDN. The image is set as drive z I am logged in a TFSSetup user who is an administrator on the current box I assigned TFSService user as the service user (Both users are domain accounts and administrators on the current box, but NOT on the domain) Steps to replicate Install Windows 2003 Standard Server Setup ASP.NET on the current server Install Windows 2003 SP1 (off web ...Show All

  • Windows Forms Setup Project - Install Even If Existing Install of the same version exists.

    Well yet again I get myself too deep into a project to tell my boss "I dunno". Anyway I am trying to create a setup project that will run no matter if the current version is already installed or not. This is basically for my presetup and the error is kinda annoying and my boss really doesn't want it. The only thing the installer does is create some icons and registry entries. PLEASE HELP! You are not able to do this unless you change the version number. There is an option to RemovePreviousVersions on your setup project which will remove the earlier version on install. ...Show All

  • Windows Forms make listbox accessible outside of form

    I have an app that uses a listbox to display program status messages and a function in a class other than the form needs to be used by the solution to update the listbox. I do not know how to make the listbox public so it can be updated by that function. public class frmMain : System.Windows.Forms.Form{ public System.Windows.Forms.ListBox listBox1; I would lik ...Show All

  • Visual J# Problem with subclassing a form AND J# interface in C# 2.0

    I have an existing application that declares a class that derives from System.Windows.Forms.Form and an interface. This compiled and worked correctly in 1.1 but an error is reported during in C# 2.0 "IRecitalMirageForm - type is not supported by the language". The interface is written in J#. public class Form1 : System.Windows.Forms. Form , IRecitalMirageForm Is there any workaround for this behavior Hi, This is strange. I tried to repro it but couldn't succeed. I wrote a dll in J# (using visual studio 2003) which defines following interface... package IRecitalMirageForm; public interface ...Show All

  • Visual Studio 2008 (Pre-release) how can i get shorcut keys

    Hi here i'm trying to create a simple menu with simple operations like file open , file close and etc.. how can I get control keys (shortcut keys) for that menu. For example ctrl+s for save , alt+f for open file menu and etc. Thanx-Nagu As an example, you'd want to do something like this: <Window.CommandBindings> <CommandBinding Command="ApplicationCommands.Open" Executed="OpenExecuted"/> </Window.CommandBindings> <Menu> <MenuItem Header="_File"> <MenuItem Header="_New"> <MenuItem Header="subitem"/> </MenuI ...Show All

  • Visual Studio 2008 (Pre-release) Why should I care about WS-ReliableMessaging?

    I've been trying to understand exactly why I should care about reliable service calls via MSMQ. Now I understand that TCP/IP and HTTP are not 100% reliable methods for transport but would it be safe to say that when considering an intranet solution that ReliableMessaging is almost never really worth the effort I will admit to being somewhat ignorant to the drop rates of typical web service / http calls so if someone could either quickly educate me or point me to some good reading materials I would be very appreciative. Another factor in this discussion is the idea that simply building in re-try logic for your web service call might handle ...Show All

  • Windows Forms Capture Webcam

    HOWDY! I want to get webcam images in .NET!  I know I'm going to have to go back to the Win32 stuff...  I'm pretty sure I'm going to have to import the "avi32.dll"  But I have no idea what methods to use, I don't even know what methods are available!!!:'( PLEASE help!  Any ideas   References   Thanks folks! JMAN LO ...Show All

©2008 Software Development Network