Software Development Network Logo
  • IE Development
  • VS Team System
  • Visual C#
  • SharePoint Products
  • Visual C++
  • SQL Server
  • Visual Basic
  • Visual FoxPro
  • Audio and Video
  • Microsoft ISV
  • Visual Studio
  • .NET Development
  • Game Technologies
  • Windows Forms
  • Windows Vista

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

QuantumMischief

Member List

Subtle
Rtalan
killerbambam
VivekGupta2812
Dave--C
UncleZen
Tamiri
Sarath.
GoodCoder
yxxng
Mantorok
Amit Vasu
sully blue
Apolodor
Chris Du
Madhuchhanda
Michael BBB
Ragavendra
Pockey
shadwick
Only Title

QuantumMischief's Q&A profile

  • Software Development for Windows Vista CallExternalMethod in Code-Only and Code-Beside Workflows

    I have created two identical workflows that use a CallExternalMethod activity. I'm using .NET 3.0. One workflow is code-only and the other is code-beside. When I configure the CallExternalMethod activity, I see that the Data field in the Properties pane works differently for the two workflows. On the code-only workflow I can specify a member of my workflow class as the data to be passed. I see "Name" and "Path" sub-fields in the Properties pane. On the code-beside workflow I cannot seem to specify a member of my workflow class as the Data to be sent. Also, I do not see the Name and Path sub-fields in the Properties pane. I have checked the help and searched the forums and I can't find any documentation fo ...Show All

  • Software Development for Windows Vista Standard User Analyzer causes COM and ActiveX to fail

    We have a legacy application programmed in C++ and MFC that runs on Windows 2000 and XP but has problems with COM and ActiveX when run on VISTA. This app is built with Visual Studio 2003. I remotely debugged this app running on Vista from my development machine and found that the COM and ActiveX problems is the app trying to instantiate the COM components but they return E_ACCESSDENIED. I have checked the following: 1. The COM components on both my development machine (XP) and the test machine (VISTA) have the same ACL’s. 2. The access denied problem occurs if I am logged into the test machine (VISTA) as a local user or an administrator (Admin Approval Mode). 3. I added: HRESULT hr ...Show All

  • Windows Forms Implicit Error Provider

    Is there an implicit error provider on every windows form and user control I am trying to understand how .NET knows to show the default error provider while binding to objects that implement IDataErrorInfo, without us having to explicitly create an error provider. Is this default error provider accessible from code Thanks, Naveen System.Data.DataRowView implements IDataErrorInfo. The DataGrid and DataGridView controls use that interface in their Paint methods and display an "error" bitmap and initialize a tooltip if the row has an error. ErrorProvider is not involved. ...Show All

  • Software Development for Windows Vista TransactionScopeOption.Suppress questions

    I know you can use Suppress to exclude operations from an ambient transaction. What happens if there is no ambient transaction present Does any sort of transaction get created Will Suppress override a Required or RequiresNew further down in the call stack Or will each be treated as an atomic transaction, since there is no ambient present due to the Suppress Do you need to call Scope.Complete() at the end of a Suppress scope Assuming you understand the logical implications of doing so in terms of data concurrency, is there any sort of overhead in wrapping all your read-only DAL methods in a Suppress scope Thanks! 1. No, a transaction will not be created in this case. 2. Suppress will suppress the ...Show All

  • SQL Server Set filter to date Now()

    I want to set a filter to calculate the date range to be 1 year ago to last month. Is this possible ps. Im working with a AS cube. Correction its for a date range of the current year January- the month prior to excution, (So Now() minus one month). Can anyone help ...Show All

  • Visual C# Answer compobj.dll is too old for the ole2.dll initialized

    When I try to call using TAPI 3, i get this error; --------------------------- TAPI3 --------------------------- Failed to create call! compobj.dll is too old for the ole2.dll initialized (Exception from HRESULT: 0x8004000E (OLE_E_WRONGCOMPOBJ)) --------------------------- OK --------------------------- any idea please i find the problem,but i don't clear about it. i see a article named ' Tapi 3.0 Application development using C#.NET By devang_bison ' in the http://www.codeproject.com the link : demo and source look at this code script: bcc = ln.CreateCall(textBox1.Text, TapiConstants.LINEADDRESSTYPE_PHONENUMBER | TapiConstants.LINEADDRESSTYPE_IPADDRESS ,TapiConstants.TAPIMEDIATYPE_AUDIO); CreateCall is ...Show All

  • Software Development for Windows Vista ASP.NET And a State Machine Workflow

    I recently read the MSDN magazine article, Windows Workflow Foundation, Part 2 (http://msdn.microsoft.com/msdnmag/issues/06/04/CuttingEdge/), where Dino Esposito demonstrates how to work with workflows in ASP.NET. Dinos' demonstration provides a helpful solution to working with Sequential workflows; however, it left me a little confused with how to work with a State Machine workflow. In the article, Dino demonstrates how to pass parameters to a Sequential workflow by using a Dictionary object, which is then passed as a parameter to the CreateWorkflow() method. The problem is that State Machine workflows pass parameters through event arguments. Using the OrderWorkflows (beta 2, lab 4) example as a starting point, is it pos ...Show All

  • .NET Development Microsoft.Office.Interop.Excel.dll

    Hi again I am still having problems with this Excel Interop ... I did a little sample application. It just opens a excel file and than closes it. I refer directly to Microsoft.Office.Interop.Excel.dll Platform Target is set to x86 (I tried also x64). When I run it on a x86 Windows XP Machine it works fine. When I run it on a x64 Windows 2003 Server the following error comes: Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80040154. This exeption comes up at this line: Microsoft.Office.Interop.Excel.Application ObjExcel = new Microsoft.Office.Interop.Excel.Application(); The code looks like: System.Threading.Thread.CurrentThread.CurrentCulture = new System.G ...Show All

  • SharePoint Products and Technologies Anonymous access not working for lists and libraries

    I am banging my head against a wall here on what should be a trivial issue. I have just one site set up that is going to be used predominantly as an internet, but have a component for users to login as an extranet. I have gone thru everythign and still I am having a significant issue. Anything that is a list or library is not visible when logging and requires a password if I enter the URL directly. Background: * SharePoint 2007 installed and all components of the website appear to work correctly when anonymous access is not enabled and I login. * "Anonymous Access" setup on IIS. (done) * Central Admin -> Application Management -> Authentication Providers -> "Enable anonymous access" is checked (done) **** ...Show All

  • .NET Development Xpath Expression with XpathNavigator.Select vs XmlDocument.SelectSingleNode

    Hi. I have an xml file with proper namespace and schema. I have an xpath expression that I have tested on the document in xmlspy (xpath 1.0 or 2.0) which returns a single node element. If I load the file into an XmlDocument and apply the expression with SelectSingleNode, I get the proper element value back. If I use XpathNavigator.Select on this file, which I understand, returns a node set, (even though the expression can only match a single node), I get the inner xml of all the nodes in the file (3 values). I am properly using the XmlNamespaceManager in each case. With the Xpath navigator, I have moved to root initially, before doing the select. Does anyone have any ideas why the XpathNavigator is returning strange resu ...Show All

  • SQL Server Excel Destination appends the excel file everytime a package is executed

    i have an SSIS package that exports to an excel file. This works fine. the problem is that it appends the data instead of overwriting the file. Is there any way to overwrite the file like you can with a flat file I have to email the file everyweek and don't want to have to clear it out manually. Any help would be appreciated Pamela, You could also use a Execute SQL task to create a new excel file on every execution of the package. I have posted an step by step guide on that: http://rafael-salas.blogspot.com/2006/12/import-header-line-tables-_116683388696570741.html I hope you find it helpful ...Show All

  • SQL Server Join 3 Tables

    I have 3 tables that need to be joined. Table 1: Timecard -------- loginname date wrknum time ----------- --------- --------- ------ afrank 7/17/06 1 3 afrank 7/17/06 2 2 afrank 7/17/06 3 3 afrank 5/20/06 1 3 rjohn 7/17/06 1 3 ..... Table 2: Defaults ----------- loginname wrknum ----------- --------- afrank 1 afrank 2 afrank 3 afrank 4 afrank 5 .... Table 3: Workorders wrknum description ---------- --------------- 1 descrip1 2 descrip2 ..... The result needs to be for the user afrank, date=7/20 and would look like: Resultant Table: loginname wrknum time description ----------- ---------- ------ ------------ afrank 1 3 descrip1 afrank 2 2 descrip2 afrank ...Show All

  • SQL Server Problems Upgrading database engine 2005 express to 2005 standard

    I'm having problems upgrading the SQL express 2005 database engine services to 2005 standard 32 bit. I've also tried to install sql 2005 service pack 1 "SQLServer2005SP1-KB913090-x86-ENU.exe" and it did the same thing, upgraded everything except the database engine services. After that I tried another install from the run command " Z:\Setup.exe SKUUPGRADE=1" and that failed at the same place as well. My windows version is is 5.2 (build 3790.srv03_sp1_rtm.050324-1447:service pack 1 Below is a copy of the error log file from the install, any help would be greatly appreciated. === Verbose logging started: 11/7/2006 9:06:34 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: C:\Program Files\Microsoft S ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. from Static to Instances?

    Hi, I have come to a point where I want to change my code from using alot of static stuff to use instances instead. I read the thread on Best coding practices with ContentManager and GraphicsDeviceManager on this forum and decided that it's time to rewrite alot of code. But the thread didn't give any clear code examples for me as a newbie could work with and understand. Here is my code I want to rewrite: www.karlfredberg.se/cgtalk/ShooterExperiment 2007-02-17.rar If someone could take there time, glance it through and point me in the right direction I would be most grateful. Cheers Alfons Is just depends on what method you were planning on going with. Reading through ...Show All

  • Smart Device Development SelectedIndexChanged Event

    Hi, I am coverting a Pocket PC user interface to a Smart Phone (WM 5.0) user interface and for some reason the SelectedIndexChanged event for a combo box on the user interface never fires in case of the Smart Phone app. However, for the Pocket PC app, I was able to trap the SelectedIndexChanged Event just fine.... Thanks, -Suri ...Show All

©2008 Software Development Network