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

Software Development Network >> Jesús Suárez's Q&A profile

Jesús Suárez

Member List

WernerP
Microsoft_TommyTP
holger1
Martin Carlisle
Cyberpro60
DevInstinct
Michael Klucher - MSFT
Remeard
Rony
mp4city
Magnus Green
korenwolf
sbf1100
David Fries
dwitt
Claudio Perrone
cchan
Rottengeist
JohnYG
jamescarpino
Only Title

Jesús Suárez's Q&A profile

  • Windows Forms cd removal and insert notification

    well, I answered my own question WM_DEVICECHANGE. it worked propperly, only problem is that I was trying to detect insert on an OEM volume (not a normal CD). To do that, I have to user RegisterDeviceNotification. Could anyone help me register to recieve messages about my drive  I need to register for DBT_DEVTYP_OEM. ok. forget all that. it  ...Show All

  • Visual Studio Tools for Office clr20r3

    Microsoft Outlook Error Signature Event type: clr20r3 P1: outlook.exe P2: 10.0.6713.0 P3: 4097d7ce P4: system P5: 2.0.0.0 P6: 4333ae87 P7: 2bb9 P*: 17 P9:system.net.sockets.socket Running MSCRM version 1.2 plugin for outlook, Windows XP Pro and Windows 2000 Pro OS's (on different machines of course) all running Office XP - have installed all updates and hot fix from KB Article Number: 829346 - Problem occurring before and after latest updates and hot fix. How do I resolve this error Thanks for taking the time to ask your question. You are more likely to get a fast response in a forum or newsgrou ...Show All

  • Smart Device Development CeOidGetInfoEx2 parameters.

    Hello, I found in MSDN documentation that the CeOidGetInfoEx2 is defined like this: BOOL CeOidGetInfoEx2( PCEGUID pGuid , CEOID oid , CEOIDINFO* poidInfo ); but poidInfo [in/out] A pointer to a CEOIDINFOEX (EDB) structure. On successful return, it contains information about the object specified by oid . The caller must set poidInfo-> wVersion to the current version of this structure type to CEOIDINFO_VERSION (2). so what is it CEOIDINFO or CEOIDINFOEX (EDB) for this code CEGUID iceguid; CEOID CeOid; CREATE_INVALIDEDBGUID (&iceguid); hEnumDB =CeFindFirstDatabaseEx (pceguid, 0); if (hEnumDB ...Show All

  • SQL Server Help with multiple IIFs, or need suggestion of better solution.

    I am trying to check multiple fields from a db to see if they have either a 1 or 0 value, and if there is a 1, then write a value into a text box. I need to check multiple fields, and if all of them are checked then I have to insert the value for each into the text box. If it was just checking one condition it woudl be easy, because I could just nest IIF's until it was true. So I can't do because once the truth clause is satisfied it will exit the loop: IIF(Fields!Fielda.Value = 1,"Fielda",IIF(Fields!Fieldb.Value=1,"Fieldb"....) I also cannot do: =IIfFields!Fielda.Value=1,"Fielda,"") =IifFields!Fieldb.V ...Show All

  • Visual Studio Team System Setting options for VBScripts wrapped in Generic Tests

    Hello, I have a number of Test Scripts written in VB that I'd like to hook into the Test Manager in Studio 2005. While I can wrap them using Generic Tests, they all take different command-line parameters that are used to turn on or off specific portions of the tests. They also all need some additional common configuration details like the Source and Target machine information. I'd like to have an easy way to change these input parameters so I can easily run these tests on a number of different machines, and easily enable or disable the different options for the individual tests. Unfortuantely I can't seem to figure out a good way to do this. ...Show All

  • Software Development for Windows Vista WinFS Application Design Question

    Hi folks, I've downloaded the beta 1 refresh of WinFS and am working my way through the help file and samples, trying to come to grips with it. So far I'm really impressed with the concept. I have a question, though, about the design of a hypothetical application that makes use of WinFS. Let's say, for example, that I was trying to make an application to track your DVD collection. I imagine I'd create WinFS custom types for things like DVD, Disc, Title (the various contents of a disc), Track etc. I could even create custom types for Actors and Crew members, and use derivatives of the Link class to assign them to titles. But: H ...Show All

  • Visual Studio Problem in Crystal Reports

    Hi All, I am using Visual Studio 2003 and crystal reports 10. I have developed a Web application using ASP.Net and used crystal reports 10 version. I have developed the setup project. And I tried to install this setup project on another system, on which crystall reports does not installed. Installation completed successfully on this system. Now I tried to run the installed project. I am facing the problem with crystal reports. Apart from crystal reports everything is working fine. I am getting error 'CrystalDecision.CrystalReports.Engine is not registered'. Then i checked this dll  in the installation setup project and in&nbs ...Show All

  • .NET Development XmlFormatter and C# visual studio express

    I have downloaded and installed Visual Studio C# Express + net 2.0 I would like to use the new XmlFormatter in net 2.0, but when I compile I get this error: The type or namespace name 'XmlFormatter' could not be found (are you missing a using directive or an assembly reference ) My using directive is using System.Runtime.Serialization; I have tried to locate and add the assembly reference : System.Runtime.Serialization.dll buts it not there. in fact no file "system.runtime.serialization.dll" on my computer. I would appreciate any help - thanks There is a extremely useful snippet you can use ...Show All

  • SQL Server Bulk Insert from Mapped Network Drive

    Hi, I am trying to perform bulk insert using mapped network drive, but getting following error: Server: Msg 4861, Level 16, State 1, Line 1 Could not bulk insert because file ' F:\Download\MVY.b45 ' could not be opened. Operating system error code 5(Access is denied.). F is mapped network drive pointing to my SQL Database Server. While searching, i got the following link but not able to relate with my problem: http://support.microsoft.com/default.aspx scid=kb;en-us;238238 One exe is running on component server [CTom] and copying the data file to mapped drive (i.e. F:\), then bulk insert is trying to insert from that mapped drive. ...Show All

  • Visual C# \r\n in a resource string

    When I create a string like You have made changes.\r\n\r\nWould you like to save this file and put it in the resources, the \r\n\r\n show up in MessageBox.Show(). If I hard code the string, I get the line breaks as I expect. What gives You should use @: string temp = @" You have made changes. Would you like to save this file "; This will also escape \'s, but you need to use two quotes if you need to quote anything: string temp = @"You said ""I like \ slashes.""."; ...Show All

  • Visual Studio Team System How can I programmatically Fail a WebTest?

    I am trying to validate a header value exist in a response. Since ExtractHttpHeader only supports checking for the existence of header names and not values,  I am traversing the test Context values looking for a specified key/value pair. I want to fail the web test if the values do not match. Great response!  Your recommendation was dead on.  Here is the code snippet used in Validate() for anyone else needing to validate response header values: for ( int i = 0; i < e.Response.Headers.Keys.Count; ++i) {   if (e.Response.Headers.GetKey(i) == HeaderStringParameterName) & ...Show All

  • Software Development for Windows Vista Parent / Child workflows

    I'm working on an order/order-item scenario where there is an order workflow and an order item workflow. What I want is for the order item workflow to be able to signal the parent order workflow via events that an order item was fullfilled, allowing the parent order to detect if the whole order is ready to ship. This is all done through state machine workflows. Here's my issue: I am using InvokeWorkflow activity to launch the child workflow. What I don't know how to do is have the child workflow know about the parent, or have the parent know about the child. I'm assuming that if I attach both workflows to the same data exchange service ...Show All

  • Visual Studio Team System Reports are not showing the newest information

    Hi guys, i’ve tried everything, from deleting and rebuilding the TFSWarehouse database to changing the cache control in the report client, nothing is working for me.... My reports are working but they seen to ignore the newest data that my team is producing... i cannot get the newest data from the last 5 days... I’ve read the other posts but nothing worked, any sugestions []'s Ciro Fonseca Well, i can and i will. However, i'll not manage to upgrade it in the near future, i'm really, really out of time... so i ask you :) Isn't there any way, for me to fix this problem i mean, if you explain to me, i can go into the databa ...Show All

  • Visual Studio Express Editions Showing message

    hi, well i am getting files in the data grid files contains big data, so it took time in loading them all in the data grid, i want something that will show on screen that the data is loading plz wait it should not be a message but a text as in many softwares we say it happening with a moving time stamp, so i want help plzz help me as fast as u can Thankyou To do this you could use the background worker controls or some other form of multi threading inside your application. For this question you will get better answers by posting the question in the specific language forums. ie if you are using VB.Net Express you could post ...Show All

  • Visual Studio Express Editions problem with sn.exe -k myfirstkey.snk

    hi, i am new here , just use the visual c# pound and try to publish a sample application. The problem i got is, this sn.exe just seems to fail . below is the output i perform on cmd.exe in a SP4 windows 2000 machine. C:\VCS\SDK\v2.0\Bin>sn.exe -c Microsoft (R) .NET Framework Strong Name Utility Version 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. Default CSP reset C:\VCS\SDK\v2.0\Bin>sn.exe -m Microsoft (R) .NET Framework Strong Name Utility Version 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. Key containers are machine based C:\VCS\SDK\v2.0\Bin&g ...Show All

©2008 Software Development Network