Bobmmp's Q&A profile
SQL Server SQL 2000 as publisher and SQL Express 2005 as subscriber?
I want to have transactional replication setup with SQL 2000 as a publisher and SQL Express 2005 as a subscriber Where can I get some documentation around that Basically, the problem I am stuck with is that while registering the subscriber in SQL2000, SQL2000 cannot recognize my SQL Express 2005 instance as a subscriber. I have tried both SQL Ent. Mgr. and sp_addsubscription. Please help. Thanks, Rupak Ganguly To manage a SQL ...Show All
Visual Studio Express Editions DLL
Hi, i want to implement the dataset at DLL with interaction between the Server and client. It Is posible done at C# How To Do That Thanks A Lot. I am not sure this is what you want but I think you should have a look at class libraries. You can create a empty class library from the template. You then add the classes you want to have in it. You can then reference this project/class library f ...Show All
Windows Forms Programmatically select a row on DataGridView
How do you select a row on a DataGridView control programmatically Best way I could find to find and then select a row foreach (System.Windows.Forms. DataGridViewRow row in m_dataGridView.Rows) { // check if this is a row i want if (row.Cells[ "Column1" ].Value.ToString().Contains( "123" ); row.Selected = true ; } ...Show All
SQL Server SQL Server 2005 won't install
I have followed the steps on this page but keep getting this message. SQL Server 2005 CTP Setup has detected incompatible beta componens from Visual Studio or SQL Server. You must run the build cleanup wizard from the CD to remove previous SQL Server 2005 components, and then run SQL Server 2005 CTP Setup again. For detailed instructions on uninstalling SQL Server builds, see the SQL Server 2005 CTP readme file. Any assistance would be apprec ...Show All
.NET Development picture box basics?
I need to design a program to draw lines/arcs/circles in a view. I was thinking about adding a picture box control and drawing to it. But I'm new at this and was wondering if someone could point me in the right direction as to how to draw a line on a picture box control Thanks, Devin For anything other than the default pens/brushes, you need to create one your own: Pen p1 = new Pen ( Color ...Show All
SQL Server Reference for SSIS "C-like" script needed
Consider the Conditional Split task. I can use a C-like language to create statements such as Ltrim ([Col1] =”A”) || Ltrim([Col1] =”B”) This sure ain’t VB-like and the list of functions in the upper right-hand pane of the task (“expression editor”) does not help me construct such statements. Where is the reference manual describing this language TIA, Barkingdog P.S. I have f ...Show All
SQL Server DateTime parameter format
Hi everybody A quick question - is it possible to present DateTime report parameters with specified format. Let's say instead of '9/3/2005 12:00 AM' i'd like to show '9/3/2005' only. Plus maybe it's possible to plug in some sort of a popup calendar. Thanks for response, Konstantin At least in RS 2000 if you define the parameter as string (instead of datetime) then it'll be shown in the format that you want. And I don't know if the dat ...Show All
Game Technologies: DirectX, XNA, XACT, etc. New DirectShow forums...
We are pleased to announce that the new DirectShow forums are up and running under the Windows Vista group. Please direct any future questions about DirectShow here . ...Show All
SQL Server STRANGE SQL Query
When I try to execute the below query: select * from jobmaster where status in ('Active') and materialtypecode in (1,2) and unit='IMPERIAL' and superusercode='S051000014' order by controllercode,jobname through ADO I got the error message: Invalid column name controllercode When I execute the same above query in MS SQL Query Analyzer it is working. Is there any workaround Could it be that y ...Show All
Smart Device Development run program automatically when cradled
Is there a way to automatically run a program when a user cradles/sync's I've found two solutions that seem like they should work, each with a shortcoming. They both use CERunAppAtEvent: 1) NOTIFICATION_EVENT_SYNC_END - This kind of works, but you have to connect the device to the cradle (sync), then manually sync to get it to fire the event. 2)NOTIFICATION_EVENT_NET_CONNECT - This is the most promising event, h ...Show All
Windows Forms Some simple questions
Hi all, I come from the ASP.Net world. I'm writing my first winforms app and have a few questions. Basically, the app is a conversion utility that will recurse through directories and combine single TIFF files into multi-page TIFF files. I am using the progress bar along with a label to tell the user where they're at in the conversion: (Converting file 500 of 10005). I want the labels to update with each pass of my FOR...NEXT loop. Do you use th ...Show All
SQL Server Bug in managing packages
I have come across numerous situations, generally not recreateable, where BI studio crashes when I change a package, generally when deleteing something. The latest was a package that was copied. When I tried to delet components it crashed, I tracked it down to a data viewer on a flow. Deleting that would cause the crash. It seems to me that there is some basic error handling missing from the package management code. I would love to sned th ...Show All
Smart Device Development Custom WinCE 5.0 and VS 2005 Beta2. Connection question.
So, I have a custom board and windows ce 5.0 built to our needs. I have active sync built into the image. Now, comes the problem. VS 2005 Beta2 asks for an tcp/ip (transport) and to have activesync (bootstrapper). Then I try to connect and get "Connection failed. The current version of ActiveSync is not supported. Install the latest version from www.microsoft.com.". Well, I got activesync 3.8. That is the latest I found. As a component for PB ...Show All
Software Development for Windows Vista How to create custom state activity with StateInitializationActivity?
Hi, I created the following custom activity MyState MyState : StateActiivty {} The problem is I can not add "StateInitialization" activity to my custom state activity. I tried to create "StateInitialization" in code but the compiler gives me errror saying "Cannot modify activities collection ..." If I use MyState activity in a state machine workflow, then it allows me to add "StateInitialization& ...Show All
Windows Forms change the font size of ErrorProvider's quickinfo
Hello, know someone how i can change the font size and font style in the quickinfo tooltip from the errorprovider Greets swizz_balu The ErrorProvider internally uses TOOLINFO_T structure and params1 = new CreateParams (); params1.Parent = base .Handle; params1.ClassName = "tooltips_class32" ; params1.Style = 1; internally to create the tooltip. Hence I guess it cannot ...Show All
