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

Software Development Network >> Ricardo Casquete's Q&A profile

Ricardo Casquete

Member List

jungleKing
F15HER
cosmicX
AgentM
ian at arcontech
IraFel
UnRusoDeCaracas
ECC
Dots
fishks
CyberCipher
GazMan
Closer
limonada
Shannon Braun
leandro_
tusAugusto
rkocur
Russell Barr
Rob Chandler
Only Title

Ricardo Casquete's Q&A profile

  • Visual Studio Tools for Office How to Develop InfoPath Application Using MicroSoft.NET InfoPath ToolKit

    Hello Everybody, I am stuggle with .NET and InfoPath. Because I donnu How Can I use .NET InfoPath ToolKit to develop the InfoPath Forms to validate the forms and some scripting. I already did some forms with MicroSoft Script Editor. But I donnnu How to do with .NET InfoPath ToolKit. Anyone can send any Some simple example about this above request. Its really very very helpful to me. Just a simple example. Thanks in Advance vasantha prabu. Nevermind, I found it in our MSDN subscription pack. It's a separate CD that was in our Dec. 2005 shipment. ...Show All

  • SQL Server SSIS in .NET 2005

    Hi All, I have a .NET 2005 application that uses SSIS programming class library to load and execute SSIS package stored in SQL Server 2005 (in msdb). I created the setup project that added automatically all the dlls required for that, and it is all included in .NET 2.0 as far as I know. Now, every thing goes OK on the development machine (XP SP2) against local SQL Server 2K5. But I deploy the application in another machine as a client machine (XP SP2 or Windows 2003) to connect to that SQL Server I get an error when the code tries to load the SSIS package. I use the method LoadFromSqlServer to lo ...Show All

  • Windows Forms Updater Application Block, No-Touch & ClickOnce

    I have done a fair amount of reading on the version 1.* versions of automated deployment, but I still have a few questions. Is the Updater Application Block more like a regular installation (MSI, XCOPY, etc) in that the assemblies don’t live in a sandbox and therefore ont have the same restrictions as found in No Touch Deployment (can only use Web ...Show All

  • Software Development for Windows Vista Beta 2 Installation Problems (Package Load Failure)

    I just finished installing beta 2 of workflow foundation and when I open up Visual Studio I get: package load failure microsoft.workflow.vsdesigner.designerpackage I'm running XP sp 2, VS 2005 pro, and all the feb ctp winfx bits. All the installations completed without error. I tried repairing the orcas dev tools install and the 2005 extensions for workflow install but it didn't help. I was getting the same error when I started Visual Studio.... if you look at \Program Files\Microsoft Visual Studio 8\WinFXReadme.htm it actually has a mention of this error. After following the inst ...Show All

  • Visual Studio Team System How to get target information during running a Test project

    Hello all, I have set up a Team Build Type to build my solution of multiple configurations, such as "Debug|Win32", "Release|Win32", "Debug|Pocket PC 2003", "Release|Pocket PC 2003" and so on. Within the same solution, there is a Test project which perform a BVT test. I config the Team Build Type to run this BVT test after building in TFSBuild.proj as following: ...     <RunTest>true</RunTest> ...     <MetaDataFile Include="$(SolutionRoot)\Main\MySolution\MySolution.vsmdi">       <TestList>BVT</TestList>     </MetaDataFile> ...Show All

  • Visual Studio Team System Email Alerts in Workgroup mode

    I can't seem to be able to recieve email.  MY TFS is in workgroup mode.  I have all the alerts turned on.  The pop3 and smtp server are ok (I can send and receive email normally in Outlook).  Is this an issue for anyone else Thanks in advanced,  John Did you configure the mail server and from address in the web.config   Does the TFS server account have permission to send mail from the from address Brian ...Show All

  • Software Development for Windows Vista Will there be a new GetOpenFileName API that wraps/calls IFileDialog?

    Similar to the way PrintDlg calls PrintDlgEx behind the scenes in 2000/XP when you don't have a hookproc, is there going to be something similar where you call legacy APIs such as GetOpenFileName and somehow it encapsulates or calls down to IFileDialog (IFileOpenDialog) From what I saw in the PDC video here: http://microsoft.sitestream.com/PDC05/DAT/DAT307.htm#nopreload=1&autostart=1 there is a ton of COM client code that needs to be written and also some knowledge of Shell concepts such as PIDLs, just to bring up an IFileDialog. The presenter mentions that "post-Beta 2" this is going to change By how much Thanks, ...Show All

  • Windows Forms How to access methods of MDI Child from by MDI Parent Toolbar?

    Hi How can I access the methods (Add, Save,Delete, Record navigation methods such first, previous, next & last) of a MDI child from when clicking on a toolbar positioned in the MDI parent form So on the MDI parent I have this toolbar. When clicking on a button on this toolbar it must call a method from the current MDI child form. I am running there are several types of MDI child forms with keeping recordsets, but each contains (the same) methods... How can I write template class for this functions Does anybody has an example of how to do this in Visual C++ .NET Thanks, Joseph TA Tel: 0024398356388 Hi I didn't try with ...Show All

  • Visual Studio Debug JScript in an ASP.NET app with Visual Studio 2005

    I posted this under .NET development earlier today, but perhaps it would be more appropriate here. I have recently installed the trial version of Visual Studio 2005, Professional Edition. I have converted an ASP application of mine (developed with Frontpage 2003) to ASP.NET and after correcting a number of incompatibilities it works correctly. However I have noticed that while I can set breakpoints and debug my VB pages, I can not set any breakpoints or figure out how to do any debugging with the JScript pages. The toggle breakpoint command is grayed out in JScript pages. Is this related to the lack of support for JScript in the Language ...Show All

  • Visual FoxPro Bug in VFP 9? Adding an object to an array with AddObject.

    We have this base class that basically implements a collection (I know there are collections in VFP, but we can't change this overnight). Part of the process is to add an object to an array. This code word flawlessly on VFP6 for years. this.ItemCount = this.ItemCount + 1 Dimension this.Item[this.ItemCount] Local cItemPlace cItemPlace = "Item[" + LTrim(Str(this.ItemCount)) + "]" this.AddObject(cItemPlace, this.ItemClassName, &tInitParameters) We are now preparing to upgrade our systems to VFP 9 and during the testing we get an "Object name is invalid" error on the line that adds the object. This error occurs very rare (maybe once ev ...Show All

  • SQL Server ~* Allowing Users to select the Fields to be displayed in report *~

    Hi, Is there any way to allow the users to select the fields to be displayed in report and apply format for the same. I don't want any aspx page to be used for this. Is there any tool from microsoft which can do the same.. thanks in advance. Cheers Chakri. You could use a Multi-select parameter which is a list of all field names. In the visible function of each column of your table, check for the existence of that field's name in the parameter to conditionally show or hide it. ...Show All

  • Smart Device Development VS2005 sucks!!

    I have been using vS2003 for a couple years now. I upgraded to 2005 thinking I'd be getting a better environment with more up to date libraries and tools. What I ended up with is an environment that takes 3 or 4 minutes to open for me to start working. Another 4 or 5 minutes to open my tiny PDA application with 4 forms in it. Errors that make no sense about such and such not existing as a function of a class, yet the editor itself finds every step of the command as you type it. Again, this all worked perfectly in 2003, no code changes, but what I'm left with is not a single project that I can sucessfully compile and an envrionment that ...Show All

  • Windows Forms How I can know any point COLOR on a form, if a form has gradient fill?

    How I can know any point COLOR on a form, if a form has gradient fill I'm sorry for my English... See this sample: [DllImport("Gdi32.dll")] static extern int GetPixel(IntPtr hdc, int nXPos, int nYPos); static Color GetPixelColor(IntPtr hDC, int x, int y) { long colorRef = GetPixel(hDC, x, y); return Color.FromArgb((byte)colorRef, (byte)(colorRef >> 8), (byte)(colorRef > ...Show All

  • Windows Forms Listview Add Item

    I am trying to find the best approach to add 2000+ items to a listbox.  Is it possible to load say....the items in "chunks"    ex) load the first 200 items onto the listview and display them. so right now the first 200 should be on the screen (but the user thinks there is 2000+ because he can't scroll down that fast) but you ke ...Show All

  • .NET Development FileSystemWatcher and FileStream.Flush(); no notifications until Close().

    I don't know if this is an OS limitation, a problem with the FileSystemWatcher, or just me.  If I use the FileStream class to open a file, seek to a specific position, write some data, and flush the buffer, FileSystemWatcher is oblivious to the change until I call FileStream.Close! If I view the file attributes and contents after the flush and before the close I see that the last file write date/time has changed the the contents have changed. Same thing happens in Visual Studio if I load the file I'm writing to into Visual Studio: Visual Studio does not inform me the file has changed until FileStream.Close is called. I haven't tried usi ...Show All

©2008 Software Development Network