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

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

Markdem

Member List

mike smoots
Malnus
Simon Dahlbacka
Robert Simpson
dipika
Cetin Basoz
entanglement
David Schulze
cgufl
rationalcop
pieaholicx
朵朵
Kevin Beck
BReisch
Wolfgang Zerzawy
severino
David Rogers
mark73777
XPolter
theguy204
Only Title

Markdem's Q&A profile

  • Visual Studio Fatal Error HXC2064: Unable to initialize the full-text index engine. Reason code 205.

    Hi, I cannot compile Help 2.0 files anymore. Whether I use NDoc or HelpStudio, I got the following message : Fatal Error HXC2064 : Unable to initialize the full-text index engine. Reason code 205. I have found this FAQ http://helpware.net/mshelp2/h2faq.htm#HXC2064 and tried to register the listed dlls without success. The targeted assembly is small and do not contain tons of comments. Any ideas Gildas Gildas: Have you been able to resolve this issue on your own by any chance If not, do you mind filing a bug on Product Feedback Center at http://lab.msdn.microsoft.com/productfeedback/default.aspx Sorry I can' ...Show All

  • Visual C++ Deploying a VS 2005 C++ application

    I have written an ISAPI wildcard extension that watches for specific content comming through the server. I wrote it using VC.NET 2005 and I am using MFC and Managed Code. Because of the managed code, I have to link the MFC as a shared libarary and this is where I get into trouble. I installed the redistributables and .NET 2.0 on the server and installed our files, however when we attempt to access the server we get the error "This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem." In the event log I get the following errors: Generate Activ ...Show All

  • Architecture Visio and UML 2.0

    Are there any plans to realize UML 2.0 specification in Visio Thanks Dim Hi, I don't work at Microsoft, but from what it seems, Microsoft is pushing towards using DSLs instead of UML notation, so it doesn't seems there will be an update to the visio's uml template. If you want to use UML my advice to you - try other tools (such as sparx EA, rational tools etc). Ido. ...Show All

  • SQL Server Hiding a subreport - How to suppress the blank line ??

    Hi, I have a main report with several subreports in a list. If I hide a subreport that contains no data by using the "visibility" attribute, there s always a blank line left in the list. Is there any way to suppress that blank line Minimize the size(width and height) of the sub report to the maximum extent. sincerely, Amde ...Show All

  • SQL Server System.Security.SecurityException when opening a connection

    What I am trying to do is in fact the most simple tutorial example of accessing data in SQL Server from embedded .NET code: [Microsoft.SqlServer.Server.SqlProcedure(Name="FillTimeDimension")] public static void FillTimeDimension(DateTime startDate, DateTime endDate)  {   // Guarantee that we have a valid connection while we run   using (SqlConnection conn =    new SqlConnection("context connection=true"))   {          conn.Open();// open the connection          ....          ...Show All

  • SQL Server Passing parameters to Oracle stored procedure

    Hi, How can I pass input parameters to the Oracle storeprocedure from Reporting services. Can any one help me in this Regards, RajeshJV There have been a few related threads on this forum recently, but here is my summary of advice: First, make sure that you are running at least RS 2000 with SP1 installed on report designer and report server. Or use RS 2005. Check the following article for general information about how to connect to Oracle from RS: http://support.microsoft.com/default.aspx scid=kb;en-us;834305 For stored procedures use " Oracle " as data source type which will give you the managed provide ...Show All

  • SQL Server How to cast empty string

    I want to replace a column value with a null if the string is empty. I would have thought this simple expression would do it: RTRIM([FromContractSymbol]) == "" NULL(DT_STR, 0, 1252) : (DT_STR, 6, 1252)FromContractSymbol Yet, I get the following error: For operands of the conditional operator, the data type DT_STR is supported only for input columns and cast operators. The expression "...see above..." has a DT_STR operand that is not an input column or the result of a cast, and cannot be used with the conditional operation. The expression works if I replace the NULL(DT_STR, 0, 1252) with say "A" and ...Show All

  • SQL Server Problem with concurrent insert and update commands

    I've got a quite simple data task. It extracts data from source, performs a few lookups and finally redirects the rows based on whether they should be inserted to or updated (if they already exists but has been changed) in the destination database (which is hosted by sql server 2005 sep CTP). I use a conditional split transform, which splits the rows in two separate outputs: - the first goes to an ole db destination which simply inserts the rows into a database - the second one goes to an ole db command which updates the same database Everything is doing well as long as there are just rows of one type, I mean only rows that s ...Show All

  • SQL Server Send Email as HTML

    It seems that using the Send Mail Task, there is no option for me to format my email as HTML. I have all my HTML code in a string and need to format my email to send the string as an HTML email. What would be the best way to approach this D'Scouser wrote: Hello, What is the namespace: Imports Microsoft.SqlServer.Dts.Runtime I don't seem to have that reference. Equally, what does it do in relation to the html mail message Kind regards Just a guess...you're not using SSIS are you -Jamie ...Show All

  • Windows Forms TextBox, enter key, shift+ enter problems

    Here is what I basically want to do: I have a multi-line textbox.  When I press enter I want it to fire a button press event ( I am pretty sure that I should not be using the AcceptButton property because of what else I want to do.)  When I press shift + enter, I want to append a "\r\n" to the end of the text. Wh ...Show All

  • SQL Server A/Synchronous execution of SSIS ETL packages

    Hi I'd like to know if there's a way to control the execution of ETL packages, such that: Different packages, or at least packages that don't access the same table or database run asynchronously with respect to each other; e.g., two different packages run at the same time and If a package is called for execution more than once by different requests, force them to run synchronously, or one after the other. If this is possible, what resources would it require Is this possible under, say, a dual or quad processor machine Thanks. Well, there is nothing to stop you running 2 packages concurrently (i.e. at the same time). They run as sep ...Show All

  • Visual C# Network like vb.net in c#

    using .NetFramework2.0 in vb.net there is a method call My .Computer.Network, in the System.Net i want to know how  can i  use somthing like thesein c# , for example: Dim ficDest As String = "C:\son of a p.swf" My .Computer.Network.DownloadFile( "http://img51.imageshack.us/my.php loc=img51&image=48-196510_Son_of_a_P.swf" , ficDest) // this will download a file from a server thanks to all, xinpis@hotmail.com   There's the That class that someone made that's "My" for C#. http://www.idesign.net/idesign/DesktopDefault.aspx tabindex=5&tabid=11 Search under downloads, there's a file called " ...Show All

  • Visual Basic Hiding Taskbar

    Is there a way to hide your taskbar while running your application Here is a sample in C++ that you can convert to VB.NET, there is a little article that explains the working of the code. ...Show All

  • Visual C# Passing array into Constructor

    Hey guys, I'm using C# 2.0 and thought I would take advantage of the new params keyword (I might not even need it if someone can show me another way). I'm making a custom class that handles files that our customers upload via the upload control. I want to only allow certain types of files to be uploaded, and was going to leave this up to the consumer of this object to specify in the contructor what file types they would like to allow from a predifined list. i.e. UploadFile_strict(msWord, msExcel) or just UploadFile_strict(msWord) I  want to allow: msWord doc msExcel doc text file csv file I've made them private variables like s ...Show All

  • Windows Forms Colors and Brushes

    Alright, I have a color thats passed into a function. Now it would seem like an easy task (and it probably is but I'm having a blonde moment), how do i translate the System.drawing.color into a system.drawing.brush  I don't want to have to pass brushes around, so I'm at a loss here, how do I translate this Thanks!!! Oops, rechecking&nbs ...Show All

©2008 Software Development Network