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

Software Development Network >> nate-d-o-double-g's Q&A profile

nate-d-o-double-g

Member List

Matt Ellis
portect
Sam D
J.X.Q.
vb2005
rwerner
alphonso
Frame
TheGreatOtakuKraken
DanMeyers
jomanlk
hcaihao
Mowali
Tdar
Larry Surat
GSK_phili
Raymond Dalton
Mevis
Christopher Bernholt
Al Christoph
Only Title

nate-d-o-double-g's Q&A profile

  • Software Development for Windows Vista Uninstall of our product pops-up a strange explorer.exe crash dialog

    The product that I work on has a Wise based installer, and when we uninstall the product, you get a pop-up saying that explorer.exe crashed. There is no visual evidence of the main explorer.exe crashing, and the task manager does list a second explorer.exe process running. Our uninstall is removing some file types and mime types, and does an SHChangeNotify(SHCNE_ASSOCCHANGED), but nothing that looks like it should crash anything, let alone explorer.exe. The error is: Problem signature: Problem Event Name: APPCRASH Application Name: explorer.exe Application Version: 6.0.5744.16384 Application Timestamp: 45234a84 Fault Module Name: StackHash_0c47 Fault Module Version: 0.0.0.0 Fault Module Timestamp: ...Show All

  • SQL Server trapping Package Validation Error

    Hello, I created a new SSIS Package. I want to send an e-mail when an error occurrs. I set the OnError event to send an e-mail. I then decided to test this so I dropped my input SQL table. When I drop the import SQL table I get a Package Validation Error and I don't get my e-mail. Am I making a mistake. I want to always send an e-mail when an error occurrs in my SSIS package. By the way I did add an e-mail at the end of my SSIS package to verify my SMTP is working - it did. Thanks, Michael Steven Scholl wrote: Jamie, We have been using SSIS now for 6 months in a production environment to load our data warehouse. We have converted 40 of 120 DTS packages from SQL Server 2000 to SQ ...Show All

  • SQL Server Report Manager http/https - mixed links

    Hi, I have setup reportserver with default settings (non https) and afterwards in IIS added a certificate and https support. Know I am able to work really well and secure over the internet, but some links in report manager pointing to http://server.domain.com/reports instead of https: For example if i call a report and then in the top there are (view, properties,...) - View is HTTPS - Properties is HTTPS - History is HTTP - Subscription is HTTP I have read some articles - mentions I should configure https, but - in Report Configuration you could not setup HTTPS - in rsreportserver.config i have entered the https link version but did not change anything - in RSWebApplication.config the Reportserverurltag is blank - so i did not change anyth ...Show All

  • Visual Studio Express Editions SP1 express edition and windows installer 3.1 v2

    Hi, i have windows xp sp2 home edition on my computer i already downloaded : microsoft visual studio 2005 express editions service pack 1 windows installer 3.1 v2 I can't install sp1 without the new version 3.1 of installer but i can't install windows installer because i still have an error : acces denied please help Thanks' What is the URL you are trying to download the windows installer from I just want to see if I can repro the access denied message. Have you tried using Windows Update ...Show All

  • Visual Studio Tools for Office VSTO Runtime Installation

    I noticed the below in the MSDN documentation concerning the VSTO runtime installation. "How to: Install the Visual Studio Tools for Office Runtime - You do not need to install Microsoft Office applications on computers that you install the Visual Studio Tools for Office runtime on. For example, you can install the runtime on a server and use the ServerDocument object to access document files. If you do need Office applications on the computer, install them before you install the runtime. If you install Office after installing the runtime, you must run VSTOR.exe again and repair the installation." This seems like a hassle, since the end-user will install my app and I have no control over whether they install it before and/or afte ...Show All

  • .NET Development Pass complex object in remote connection

    Hi I'm trying to build a client/server application with .NET remote but some things doesn't work as expected: Just for example: Shared interface (shared assembly) public interface ISampleClass { string ReturnHello(); ISampleClass getMeNewClass (ISampleClass someValue); } public interface IFactory { ISampleClass getNewInstance (); } Server //scip a lot of code RemotingConfiguration.RegisterWellKnownSericeType ( typeof(CFactory), //CFactory class inplement IFactory interface "factory.soap", WellKnownObjectModel.Singleton); Client //scip some code IFactory fac = (IFactory) Activator.GetObject(typeof(IFactory), http:/ ...Show All

  • SQL Server Readme_HelloWorld

    Howdy! I am running SQL Server 2005 SP1. I have downloaded and installed the AdventureWorks database. In running the first part of the Send.sql in the Readme_HelloWorld solution, I got an exception: An exception occurred while enqueuing a message in the target queue. Error: 15517, State: 1. Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission. I am logging into SQL Server using Windows Authentication. I am the database owner of AdventureWorks and master. My default Schema (don't know what that is) is dbo. What am I doing wrong Thanks for all of your help! Bryan The SQL Server service can ...Show All

  • .NET Development Help needed with XslCompiledTransform

    I had an issue to the XslCompiledTransform.Transform method, i am using the following code to transform xml to html public string transform(string source, string xslPath) { string rtnXml = ""; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.InnerXml = source; XPathNavigator xpNav = xmlDoc.CreateNavigator(); XsltSettings settings = new XsltSettings(true, true); XslCompiledTransform xsl = new XslCompiledTransform(); xsl.Load(xslPath, settings, new XmlUrlResolver()); StringBuilder sb = new StringBuilder(); StringWriter sw = new StringWriter(sb); XmlTextWriter writer = new XmlTextWriter(sw); xsl.Transform(xpNav, null, writer); sw.Close(); writer.Close(); ...Show All

  • Visual Basic In need of help ref microsoft example

    Hi, Ive built an application in vb.net 2003 that printed to my printer using the raw printer example written my microsoft and it worked no problems at all and have used it at home for a year or so. http://support.microsoft.com/ scid=kb;EN-US;322090 Today i was writing a different program but this time in 2005, again i used the raw printer class but when i came to test it today i get the following error. at this line "If OpenPrinter(szPrinterName, hPrinter, 0) Then" in " SendBytesToPrinter" function A great source for getting pinvoke signatures www.pinvoke.net For the OpenPrinter http://www.pinvoke.net/default.aspx/winspool/OpenPrinter.html I make no gaurantee's on its accurateness, but its n ...Show All

  • Windows Forms ClickOnce & Custom Actions

    Hi, I want to know how can i add custom actions to my ClickOnce deployment. Is there any way for it Basically i want to attach a database to a server in the custom action. I also get the server address in the custom action. Please guide me how can i do it | Thanks in advance... Regards, Wasif Ehsan. You can use IsFirstRunProperty only when deployed with ClickOnce. To check, if your application is running as a ClickOnce-deployed application, inspect the System.Deployment.Application. ApplicationDeployment .IsNetworkDeployed property: if (System.Deployment.Application. ApplicationDeployment .IsNetworkDeployed) {     if (System.Deployment.Application ...Show All

  • Internet Explorer Development IE7 Breaks IE6 Javascript/OWC Client Display

    I have a very large application that uses a Javascript menu with many items and grids created using Office Web Components (OWC 11). In IE 6 everything worked fine, but in IE7 some of items in the longer menus appear behind the grids, making those items unavailable to my users. At first I thought it might be the "windowed" vs. "non-windowed" controls issue (see MS KB article ID# 177378), but then I realized that if that was so then the problem would have occured in IE6 as well. Can anyone shed any light on what is causing this problem and what I might do to fix it This is an app running at a very large and famous corporation (I guarantee you all have heard of it) with over 2500+ users, and this problem needs to be ...Show All

  • SQL Server set variable with stored procedure or...

    hi how can I set my variable value with a query I am about to make a procedure to get a comma seperatet array and insert into the table. if I omit ID (primary key) and set it as Identity every thing is ok but I don't want it to be Identity. so I have to find the max of ID and then add it to the first of my comma seperated values. the problem is I have a table name as nvarchar in the parameters. so I have to first make a query as string and then execute it. anyway I need to get the value of the query string and assingn @ID variable to it's return value. how can I do it so just suppose that I have @Values, @TableName (values are in the right order) then I want to find max(ID)+1 in @TableName (something like "select max(id)+ ...Show All

  • Visual Studio 2008 (Pre-release) "Exception of type 'System.Data.DLinq.CycleDetectionException' was thrown."

    hi all, i'm trying to persist a doubly linked list to my database, i have some test code that creates a list of 'timeslots' where each timeslot contains pointers to the previous and next in the sequence. the test code is effectively a for loop that creates 5 or so timeslots, with each successive one setting its 'previous' to the previously created timeslot and so on .... (I'm sure you get the idea). all looks fine in the debugger visualiser and integrity seems to be correct, when i call table.add(Timeslot) I get the following: "Exception of type 'System.Data.DLinq.CycleDetectionException' was thrown." can anyone confirm that the cycledetectionexception really is detecting a circular reference somewhere (I'm assumi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Garbage Collection

    Hi. I'm not a game programmer yet but I'm a programmer. I have been learning computer graphics (opengl) at school and while I was talking to one of the professor was referring to Java as the main problem is that the garbage collection does not permit it to be real time. I know that the .net framework which I use quite often has garbage collection as well. The problem with garbage collection is that you (the programmer) does not know when it will happen. My question are 1) Is Xna going to have garbage collection and 2) if it will have garbage collection, wouldn't this make a video game slow thanks Francisco 1) Yes, since it's based on the .NET Framework, garbage collection is built in 2) Not necessarily. ...Show All

  • SQL Server How do I create an SSIS project?

    How do I create an SSIS Project in BIDS I installed BIDS, but I don't see any SSIS projects to create. When I click File - > New Project I see the following options under "Business Intelligence Projects" section. 1. Report Server Project Wizard 2. Report Server Project No where do I see anything about SSIS or integration services projects. Am I missing something Did I not download something I have Windows XP SP2 Visual Studio .Net 2005 SQL Server 2005 Express SQL Server Management Studio Express Installed Business Intelligence Development Studio My company has a SQL 2005 server that I connect to in which I want to run SSIS projects off of. I'm sure I'm just missing something small. Can someone point me to th ...Show All

©2008 Software Development Network