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

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

poon23

Member List

C. Charpentier
ivanFSR
Muhammad Adel
shaul_ei
NehpetsZero1
Brian Kramer
R.Tutus
Mauro_Net
Docseuss
Valmir Passero
Samer Selo
Ritesh Tijoriwala
Cika
ititrx
DoS
jrett
AlexanderJ
Sinno
Nikola Atanasov
Huson
Only Title

poon23's Q&A profile

  • Visual Studio 2008 (Pre-release) SOAP intermediaries and message security

    Hello. I’m developing a SOAP intermediary service for a scenario where message security (using the WSHttpBinding) is used. I’ve used the following technique: 1) The SOAP intermediary service (SIS) contract has only one operation, with a Message parameter and returns a Message. The current implementation simply forwards the message and the reply without any modifications. 2) The SIS uses the WSHttpBinding WITHOUT security and has a service behavior with ValidateMustUnderstand set to false. This way, all the security related headers are ignored by the SIS. The SIS also communicates with the ultimate receiver using the WSHttpBinding WITHOUT security. 3) The SIS endpoint dispatcher uses a MatchAllMessageFilte ...Show All

  • Visual Studio Tools for Office Catastrophic Failure with Outlook Redemption SafeContactItem object

    Hi all, My current project is an enterprise application which involves integration with outlook 2003. For this purpose I used C# and MS...NET framework 2003, outlook object model, CDO and Redemption.dll to avoid any popup. Am facing a memory leak/Catastrophic failure whenever I run these instructions of my code on the server where exchange server and outlook are installed. // iterating on some contact folder …in a loop ………………………………………………………. Outlook.ContactItem foundContact = (Outlook.ContactItem)foundContactFolder.Items[foundIndex]; SafeContactItem safeFirmContact = new Redemption.SafeContactItem(); safeFirmContact.Item = foundContact; string contactEmailAddress = safeFirmContact.Email1Address; // ge ...Show All

  • SQL Server Problem connecting from other PC in network

    Hello all I am new with SQL server express 2005 and i dont know what i am doing wrong. I have an MS access database want to migrate to the SQL server. Wizard upsize looks okay so it works on my local machine in the network. The application stays in MS Access but the data goes to the SQL server. On my server i enabled tcp/ip and pipes and i opened the firewall for SQLSERV and SQLBROWSER. I installed the SQL Native Client and not SDK on the other computer in the network. When i try to make a connection with the native client in the ODBC manager it goes wrong. I dont know what i do wrong. Patrick Hello Andrea, That i done already. In the database engine i allow remote connections with TCP/IP and ...Show All

  • Audio and Video Development Is there a way to do a frame grab of a movie and store it as a jpg or png in the persistent storage ?

    Hi All, I was wondering if there is a way to do a frame grab of a particular scene while watching the movie and store that frame as a png or jpg in the persistent storage of the player Let's say I define a function for key "A" on the remote which does this when pressed. Any pointers would be appreciated. Thanks In the example given, it is only saving to filecache (ie, memory). For a permanent copy, you would need to copy it from file:///filecache/whatever.cvi to file:///required/{your-guid}/whatever.cvi , then it would appear on C:\HDDVD\HD_DVD\{your-guid}\ ...Show All

  • .NET Development CaseInsensitiveComparer for OrderedDictionary

    How can I set CaseInsensitiveComparer for OrderedDictionary Thanks, Greg Oops, by bad. CaseInsensitiveComparer implements IComparer, not IEqualityComparer. The documentation shows you how to make your own. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Here we go!!

    http://www.microsoft.com/downloads/details.aspx familyid=21e979e3-b8ae-4ea6-8e65-393ea7684d6c&displaylang=en The download you requested is unavailable. If you continue to see this message when trying to access this download, go to the "Search for a Download" area on the Download Center home page. ...Show All

  • SharePoint Products and Technologies Creation of a dashboard from an existing dashboard

    I have created a dashboard in MOSS2007. I would like to create a new dashboard, which differs only a little bit from the existing dashboard and I would like to start from a copy. How can I copy the dashboard Downloading a local copy does not copy the content of the dashboard! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Quadtree project

    I have started a Quadtree project. It can be downloaded at http://www.codeplex.com/quadtreeload I would be interested in comments on the direction I am taking on the Quadtree DrawableGameComponent. I have included a test program called JoshGameXNA. But, open the QuadtreeComponentLib solution and just set JoshGameXNA project as the startup project. Excuse my C#, but I'm new to it. Any construction comments are welcome. It's seems you may have to click on "more releases" to get to the "Special Build 0.1.1" project. Not sure why..... My daughter said I should mention what a quadtree is for. A quadtree is a fast way of determining visibility of, say, a terrain or landscape (other uses as well). This quadtree project ...Show All

  • Gadgets File Association

    What programme does the .gadget extension need to be associated with to get it to add to the Windows Sidebar I've managed to accidently associate .gadget with WinRar by doing an open with to work out why one of mine wasn't installing correctly, and now can't find how to reset it. Associating it with sidebar.exe doesn't work, and Windows' automated jobbie doesn't know what a .gadget is. Windows Sidebar: %ProgramFiles%\Windows Sidebar\sidebar.exe Ironically, if you look it up on the web it reports " Windows does not recognize this file type." ...Show All

  • Visual C++ unexpected arithmetic results, can someone explain please?

    I'd appreciate someone helping me out on this simple question. 5 / 9 * (c-32); results in 0 (c-32) * 5 / 9 ; results in the expected answer Is this the expected behavior in C++ If so, would you point me to the explanation I'm currently working through Robert LaFore's C++ book and haven't run across an answer for it there. I'm using Visual Studio 2005 Pro V. 8.0.50727.42 and .NET V. 2.0.50727 Jeffrey Everett Thank you everyone for the answers. Once I changed the expression to 5.0/9.0*(F-32.0) it worked. I also changed variable from float to double becuase the compiler complained when I added the decimal point. I sure need to study this a bunch more. Thanks again ...Show All

  • SQL Server Can I retrieve a result set from a sp into a variable within a Execute SQL Task?

    Can I retrieve a result set from a sp into a variable within a Execute SQL Task agentf1 wrote: Can I retrieve a result set from a sp into a variable within a Execute SQL Task There's a downloadable demo of doing this here: Execute SQL Task into an object variable - Shred it with a Foreach loop( http://blogs.conchango.com/jamiethomson/archive/2005/07/04/SSIS-Nugget_3A00_-Execute-SQL-Task-into-an-object-variable-_2D00_-Shred-it-with-a-Foreach-loop.aspx ) It sounds as though you're not interested in the bit about the Foreach loop but the bit about the Execute SQL Task is exactly what you after. -Jamie ...Show All

  • Visual Basic Parsing a non-delimited(space I imagine) text file

    I have a text file that has been exported from a Progress Database v8.23e (this is an old system, i know) . I need to parse the data to a dataset or XML or anything that has structure heh, any ideas Ive tried multiple threads here on parsing text files as well as searched MSDN/Codezone and they did not work. 0278XX'S XXXXXX PXXXXXX #49 101new multi unit 94919S & W WHOLESALE SAND ACCXXXXXX GRILLED CHICKEN SALAD 5.00EA428565-00 3.95 09/07/06 0278XX'S XXXXXX PXXXXXX #49 101new multi unit 94919S & W WHOLESALE SAND ACCXXXXXX CHICKEN SALAD ON CROISSANT 4.00EA428565-00 3.25 09/07/06 0278XX'S XXXXXX PXXXXXX #49 101new multi unit 94919S & W WHOLESALE SAND ACCXXXXXX CEASAR WRAP ...Show All

  • Visual Studio 2008 (Pre-release) TiffBitmapEncoder issue

    Playing with TiffBitmap (Encoder/Decoder) and have one issue - when trying to save .tiff file with metadata always get exception - "System.ArgumentException - The image has corrupted metadataheader".Is there workaround about that Here is sample code TiffBitmapDecoder decoder = new TiffBitmapDecoder ( new Uri (fileName), BitmapCreateOptions .PreservePixelFormat, BitmapCacheOption .OnLoad); TiffBitmapEncoder encoder = new TiffBitmapEncoder (); encoder.Frames.Add(decoder.Frames[0]); FileStream file = new FileStream (tempFile, FileMode .Create, FileAccess .Write); encoder.Save(file); // ! Exception occurs on every .tiff file with metadata file.Close(); ...Show All

  • Visual Studio Express Editions compiler cannot find windows.h

    I tried to compile an existing program (which I want to modify). The program is written in C++. So I downloaded Microsoft's Visual C++ Express edition and I tried to compile the program. It failed to compile, and the error I got was that "windows.h" could not be found. I did a search in my computer for windows.h, and it was in the Microsoft Platform SDK\include directory and I looked at my compiler 'directories' menu option and saw that I had added that directory. Furthermore I had modified various files that the compiler uses as specified in msdn instructions. But still the compiler cannot find Windows.h. Here's the error message: ------ Build started: Project: FullDuplexFilter, Configuration: Debug Win32 ------ Compiling... dx ...Show All

  • Visual C++ read excel cell

    hi there, i try to read a excel cell value. and i don't know how. i can open the excel file but after that.... maybe you can help me. i try to read the value and show it in an edit field. i am using visual studio c++ 6.0 ; excel 2003 i included all excel.h classes. here is what i tried so far. greetings daniel void CAutoProjektDlg::OnGetvalue() { // Commonly used OLE variants. COleVariant covTrue((short)TRUE), covFalse((short)FALSE), covOptional((long)DISP_E_PARAMNOTFOUND, VT_ERROR); _Application app; Workbooks books; _Workbook book; Worksheets sheets; _Worksheet sheet; Range range; Font font; Range cols; COleVariant Data; int Value=0; long cell; long *pcell = &ce ...Show All

©2008 Software Development Network