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

Software Development Network >> Evan Mulawski's Q&A profile

Evan Mulawski

Member List

learningdba
MacksDaddy
Penicillin
ivanchain
Calvin Bell
psudame
killfr0g
uzs1
Dámaso
Igor Mendizabal
skailey
Lucia_fernadez
Tsur
CodeDjinn
MoniDD
Prashant_Rai
Cyberjunkie
Chandler Chao
HowardRichards
AdriaanDavel
Only Title

Evan Mulawski's Q&A profile

  • .NET Development download a file from http -file type

    Is there any limition on the file type that can be download from http My program can download a doc, pdf, txt, html file from http. However, for some extension such as dwg, it will return a 404 error(file not found). Anybody know why And what I should use to download other type files. Ying ...Show All

  • Visual Studio 2008 (Pre-release) Combination bug of TextBox.MaxLength and Ime?

    It is a thing when MaxLength of TextBox is set and used. Conversion ends on the way when conversion that exceeds MaxLength by the Ime conversion is done. MaxLength should be applied to the input result, and should not be applied in the state under the input. Will this be corrected in the future It was confirmed that this bug was not corrected. Windows XP SP2 + Microsoft Office IME 2007 + Windows Presentation Foundation Framework Library 3.0.6920.0 (vista_rtm_wcp.061020-1904) It is a very big problem that cannot use the MaxLength property. Is not this corrected ...Show All

  • Visual Studio Express Editions How to create a Inheritable user control...

    Hello everybody, I'm trying to create a User Control that inherits from another User Control, but under the Add --> User Control command I don't see nothing that permit to choose some inheritable options... Can you help me Thank you very much! If it's a pre-existing user control, is it an OCX, dll or is it the source code of a class If it's the first two, browse for them under Properties | References. It is the latter add a copy of the source to your project. You may then Declare an inheritance in the class you are creating. ...Show All

  • Visual Studio 2008 (Pre-release) Issue with WWF in VS2005 in Vista 5472

    I'm facing the following error when trying to create a new Workflow project E:\Users\administrator\AppData\Local\Temp\hrdkibtt.ret\Temp\TestWorkflow2.csproj(64,11): The imported project "E:\Program Files\MSBuild\Microsoft\Windows Workflow Foundation\v3.0\Workflow.Targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. OS: Vista Build 5472 Other tools installed: > MicrosoftR WindowsR Software Development Kit (SDK) for July > Microsoft Visual Studio Code Name “Orcas” Community Technology Preview – Development Tools for .NET Framework 3.0 > Visual Studio 2005 Extensions for Windows Workflow Foundation (tried with RC2, RC4, Beta 2 ...Show All

  • Visual C++ In vc2005 environment, how can I switch between .h file and .cpp file easily ?Because when I use vc6.0 and assist10.0 it has a

    In vc2005 environment, how can I switch between .h file and .cpp file easily Because when I use vc6.0 and assist10.0 it has a button for switching between .h and .cpp file. I appreciate your help. Two short-cuts I can think of: - Right-click the filename in the #include statement and choose Open Document. - Add the header file to your project and simply double-click it in the Solution Explorer. ...Show All

  • .NET Development How to get an embedded resource that is in a sub folder?

    Hi, I have an embedded resource that I am trying to retreive in my code via "System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream()". Everything works fine if the file is put in the ROOT part of the project. However, I am trying to keep things organized, so I made a subfolder in the project called "Resources", and placed it in there.... However, I cannot figure out how to retreive the resource now that it is in the Subfolder. I would think it would change from foo.bar, to Resources.foo.bar, or something similar... However, that is returning null for me... I also put a breakpoint in my code and put a Watch on a call to 'GetManifestResourceNames()'... this function returns all the resources, but once ...Show All

  • Visual Studio 2008 (Pre-release) BlockUIContainer and print

    I have a FlowDocumentScrollViewer with a FlowDocument that contains several BlockUIContainers. When I tell the FlowDocumentScrollViewer to Print(), I want the contents of the BlockUIContainers to print too. The document prints, but there are empty white spaces where the BlockUIContainers used to be. Can BlockUIContainers be printed Followup to my own post: I found a workaround. Instead of calling FlowDocumentScrollViewer.Print() I do this: PrintDialog dlg = new PrintDialog(); if ((bool)dlg.ShowDialog().GetValueOrDefault()) { DocumentPaginator pag = ((IDocumentPaginatorSource)fdr.Document).DocumentPaginator; dlg.PrintDocument(pag, "title"); } where fdr is a reference to my FlowDocumentS ...Show All

  • Visual Basic How does one hide a ListView column?

    Is it possible to hide a listview column I don't want to remove it, and I want to process the data in it. I just want to hide it. The problem is that the column will contain potentially sensitive information, and I want to be able to protect against shoulder surfers. The problem is, I cannot find a ListView.Columns( n ).Hide() method or a ListView.Columns( n ).Visible property. Is this possible to do, or do I just have to remove the column It doesn't seem like it should be all that hard. Thanks, Mark Warner. Hi! Did you find a solution to this I have the exact same question and apparantly no solution :-( Thank you in advance Kai Fransson ...Show All

  • Visual Studio Express Editions Need help with wildcards in query

    I've been using Microsoft Visual Basic 2005 Express Edition: Build a Program Now! ( by Patrice Pelland) to try to learn VB, but I am having a problem with the Car Tracker example in Chapter 8 (databases). Set up the following query using 'Query Builder': SELECT Listing.ListingID, Listing.ColorID, Listing.MakeID, Listing.CarTypeID, Listing.DateSeen, Listing.Year, Listing.Price, Listing.Cylinder, Listing.HP, Listing.URL, Listing.EPGCity, Listing.EPGHighway, Listing.Notes FROM Listing INNER JOIN Color ON Listing.ColorID = Color.ColorID WHERE (Color.ColorName LIKE '%' + @colorname + '%') Tested it out (from within the Query building wizard) and it does return values as expected ('b' returns both 'Dark Blu ...Show All

  • Visual C# Interfaces oversold???

    First, I must admit that I am a C# novice and so I probably don’t have as much knowledge and experience on the subject of interface as most of you guys reading this post. After reading a few books on C# and interface design, I still can’t see and understand the real power of interface unless of course, we are talking about interfaces as a powerful concept in OOP ‘only’ and not as a powerful concept in the general sense. When I was first learning OOP I was quite suspicious about the ‘excellent features’ that OOP claims to be able to deliver to the world and I was right. For example, in reality OOP offers very little if any, code reuse. I am now having the same suspicion about interfaces even though I see a lot nice words used to d ...Show All

  • Windows Search Technologies MSN Search Desktop searchbox doesn't display on the taskbar

    Hello, I've got a problem with my MSN Search desktop searchbox, I can't get it to be displayed on the taskbar. It displays fine within IE and Outlook, but not on the taskbar. When I try to get it activated by going to the desktop search options and then pushing the button display MSN desktop taskbar. Or right clicking on the taskbar -> toolbars -> MSN Search desktop it never works. What happens is that the keyboard language toolbar is displayed on de taskbar, and that is not what I want. I've also reinstalled MSN desktop search. It worked before, I'm using it since it was first released as beta, constantly updated to newer versions. And at a time my workstation crashed, and since I can't get it working again. Any help will b ...Show All

  • Visual C++ SerialPort's problem again

    Hi Now I have a Mifare Card I need read its' "Serial Number"(SNR), So I give it a Command (the Format :STX + NAD + LEN + INS + LRC)  and (the Command : [02] + "01010505") namespace test1 {  using namespace System;  using namespace System::ComponentModel;  using namespace System::Collections;  using namespace System::Windows::Forms;  using namespace System::Data;  using namespace System::Drawing;  using namespace System::Text;  using namespace System::IO::Ports;  public ref class Form1 : public System::Windows::Forms::Form  {  public: bool cont,cont1;  public: static int msglen  = 44;  public: static const int STX = 0x02;  pub ...Show All

  • Visual C# Mouse question/help

    Hello, I am doing some research for a university and need some help with mouse movements. I need to be able to track the mouse no matter what window it is in. I have searched for this information extensively and have not really found a good answer. Idealy I would like to know for instance, if it is in Internet Explorer, where it is located i.e if it is click on the file button at the top for instance. For now however I just want to be able to have the mouse move outside my window and for me to be able to still ascertain its coordinates. Do I need to write some sort of horrible assembler program to get direct mouse input Also I am using 'forms'. not entirely sure on how to detect what "Window" you will be ...Show All

  • SQL Server Taking sum from two seperate table using Function

    set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER FUNCTION [dbo] . [CostCalculate] ( -- Add the parameters for the function here @OrderPrm uniqueidentifier , @OrderCostPrm decimal ( 7 , 2 ), @QuantityPrm smallint ) RETURNS decimal ( 7 , 2 ) AS BEGIN -- Declare the return variable here DECLARE @OrderDetailTotal decimal ( 7 , 2 ) -- Add the T-SQL statements to compute the return value here SELECT @OrderDetailTotal = @OrderCostPrm * @QuantityPrm + SUM ( Cost ) FROM tblCartDetail Where OrderID = @OrderPrm -- Return the result of the function RETURN @OrderDetailTotal END I have 2 tables which are tblOrder and tblOrderDetail, connected with OrderID colum. Given order goes into tblOrder ...Show All

  • Visual Studio 2008 (Pre-release) Custom issued security token

    Hello, I would like to create a federation scenario where the issued token is a custom token and not a SAML token. I’ve already studied the custom token sample posted by T. Janczuk at http://pluralsight.com/blogs/tjanczuk/archive/2006/06/16/28046.aspx and I’m rather familiar with the token infrastructure (managers, providers, authenticators, serializers, ...) However, I’ve a basic question: in the custom issued token scenario, do I have to implement the token provider from scratch or are there any extensibility points in the IssuedSecurityTokenProvider class that I can use In other words, is the IssuedSecurityTokenProvider hard-wired to SAML tokens, or is it possible to use it with another kind of token. ...Show All

©2008 Software Development Network