Jonathan Rupp's Q&A profile
SQL Server Problem with SSIS Transaction...Transaction Scope
Hi, I am having some problem with SSIS transaction. Eventhought I tried to imitate the concept that Jamie presented at http://www.sqlservercentral.com/columnists/jthomson/transactionsinsqlserver2005integrationservices.asp . My workflow is as followed ********************************* For Each ADO.Record in Oracle (transaction=not supported) If (Certain_Field_Value = 'A') Lookup Data in SQL DB with values from Oracle (transaction=not supported) DO Sequence A (Start a Transaction , transaction=required) INSERT/UPDATE some records in SQLDB(transaction=supported) Finish Sequence A ( transaction shoul ...Show All
Visual FoxPro passing parameters to vfp com servers using createobject
Is it possible to pass a parameter to a vfp com server using CreateObject("COMServer.Class", eParameter) It seems to me that whatever I pass in eParameter it is always .F. within the INIT method and PCOUNT() always gives 0. Regards Darren Woodford Woodford Computer Systems Ltd http://www.woodfordcomputers.co.uk Hi Darren >> Is it possible to pass a parameter to a vfp com server using CreateObject("COMServer.Class", eParameter) I don't think so. I have always used: oComObj = CreateObject("COMServer.Class" ) oComObj.RunAMethod( eParameter ) That certainly works. I ...Show All
Visual Studio 2008 (Pre-release) Aero Glass effect
Can somebody tell me something more about the aero glass effect on windows This is possible in WPF, but how can you accomplish it Can you design it with Expression Designer I saw an example of stockwatch and couldn't figure out were the code was that was responsible for the aeroglass look. Please tell me more If Aero is your chosen theme on Windows Vista, then WPF apps running on Vista should show glass and other Aero effects. You get this for free. Are you not seeing this ...Show All
Windows Forms Create Form from Async-Callback
Lo All I'm trying to create a Form from an AsyncCallback. The Form creates well but after that it doesn't react in any way. It's rather clear that the Form was created on another Thread (the callback Thread) and so it doesn't have a MessageLoop where it can catch Messages. So I somehow need to call the "Form-Creation-Code" in my Main-Thread where the MessageLoop is running. But I can't figure out how to do it. I played around with ExecutionContext, BackgroundWorker, SynchronisationContext, the Tread Namespace and and and... Here's a very very simple examle of the behavior: using System; using System.Net.Sockets; using System.Net; using Sys ...Show All
Visual Studio Tools for Office Deploy Shared Add-In ???
Hi everybody, I have a VSTO Project, a Word template with some features. And I have a shared Add-In also for Word. This has a new Menuitem wich opens the word template. On my computer everything works fine. But I when deploying it ... The VSTO Part works fine, when I run the template my actionspane apears and so on. But the Add-In seems not to work. The DLL is in the application folder... the registry seems to be ok (LoadBehavior is value 3) like on my computer. But it just doesen't work. I tried to reed some articels about Shared COM Add-Ins but I just didn't find something that helps me. I use VS.Net 2003 Beta 2 with .Net Framework 2 ...Show All
Visual C++ How VS 2005 decides to build a project
I have a project that keeps building even if it completes successfully in VS 2005. Is there a way to determine what is causing this build to kick off instead of it saying up to date Hi Jabber, Can you please describe your problem in more detail Does VS keep building your project in an infinite loop or is the project rebuilding even when sources have not changed Thanks, ...Show All
SQL Server SQLDUMPER
I installed SQL Server 2005 standard on a SBS box last night and now in the event log I'm seeing this error message a lot: EventType sql90exception, P1 reportingservicesservice.exe, P2 9.0.1399.0, P3 434f5d27, P4 sqldumper_unknown_module.dll, P5 0.0.0.0, P6 00000000, P7 0, P8 00e5fe4d, P9 00000000, P10 NIL. the event ID is 5000 This will be followed by the next two items: Bucket 04183268, bucket table 5, EventType sql90exception, P1 reportingservicesservice.exe, P2 9.0.1399.0, P3 434f5d27, P4 sqldumper_unknown_module.dll, P5 0.0.0.0, P6 00000000, P7 0, P8 00e5fe4d, P9 00000000, P10 NIL. The event id is 5001 Bucket 04183268, b ...Show All
Visual Studio Team System WorkItem Tracking and Process Template question?
We're about to upgrade from TFS BETA 3 refresh to TFS RTM and I'm reading the upgrade document. The document mentions "things before you start your upgrade" and I'm going to the list. We've created our own Process Template based on the MSF for Agile Software Development and we've modified the task.xml and the Bug.xml. When trying to create a new project based on our template(keep in mind we haven't upgraded yet) the project creation fails: TF30162: Task "WITs" from Group "WorkItemTracking" failed No problem I've said myself, I've download the original MSF for Agile process template and our own process templ ...Show All
Visual Basic FaxComExLib Com error
I have created a small test program for faxing. On some machines it works and on others it throws the following COM error when trying to send the fax: "System.Runtime.InteropServices.COMException (0x80070483): Operation failed. at FAXCOMEXLib.FaxDocumentClass.ConnectedSubmit(FaxServer pFaxServer) at FaxTest.Form1.Button1_Click(Object sender, EventArgs e) in D:\Test\FaxTest\Form1.vb:line 25" Here is the source code from my test application. All it requires is a reference to FaxComExLib. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try ...Show All
Windows Forms regarding dynamic queries in ms access and vb.net
Hi I am doing one application in vb.net(windows application). Backend is Ms Access My problem is , I have 4 textboxes. The user may or maynot enter data into the textboxes. If user enters some or all of the textboxes, depending upon the values provided into the textboxes the results are displayed. I.e., we have to dynalmically query the database depending upon ...Show All
Smart Device Development IrDA programing in v++ ?
Dear all, Please help me for sending some data to a mobile through IrDA. Does MFC provides any class or com component Also I want to get informed as soon as my phone is connected. Thanks in advance. -- Raja Pratap K MFc doesnt provide any such classs Please refer to following post for right forum http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Srikanth Bogadapati ...Show All
SQL Server Authentication Issues
Current Setup: Windows 2003 Server SQL Server 2000 w/ SP3 Windows Sharepoint Servics Problem: I have created a group on our Domain (INT) called Domain Users. Inside this group I have added individual users that need to be there. On the SQL Server when I try to add INT\Domain Users I get an error stateing that the user does not exist. Next I tried typing in INT and selecting the browse button. The window opens up listing all Domain users and groups including the one I added 'Domain Users'. I select Domain users from the Drop down list and hit OK. I then hit OK at the bottom of the Add User window and get the error User does not exist. Any hel ...Show All
Windows Forms How to make the mouse click...
How can i make the mouse click automatic, example: if(num5 == num 6) { //Mouse click } Thx in advance Note: This is C# and windows form. Hi everyone...in the future, I'd ask that you all please use the <<b>code</b>><<b>/code</b>> tags in the future when posting code so it is formatted nicer. Thanks! :) ...Show All
Software Development for Windows Vista WinFX RTC December 2005 Not working with December Vista SDK
There's a problem with the WinFx RTC download for December 2005. The links on the page http://www.microsoft.com/downloads/details.aspx familyid=BD3BA2D5-6ADB-4FB2-A3AA-E16A9EA5603F&displaylang=en There's a link to download the entire WinFx RTC package instead of the "smart" installer. http://download.microsoft.com/download/9/4/9/949EEA41-364A-45DC-8F4E-47E7AC147D25/winfxrc.exe I checked the time/date stamp in the downloaded files from the WinFX RTC and the Dll's are all from 11/18/05. this is for the WinFX RTC that is linked on the downloads page indicating it was December 2005 WinFX RTC. This happens wi ...Show All
SQL Server SQL Server
I am conducting research for an on-line class and have been challenged about something that I found on another website. Does anyone know whether SQL Server is considered to be a Network Operating System I appreciate any info you may have on this topic! SQL Server is not an OS, it is a Relational Database Management System, a Reporting and Analytics Platform and an Integration Platform. It relies on an NOS(Windows) to allow remote users to connect ...Show All
