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

Software Development Network >> Henrique Mello Quintino's Q&A profile

Henrique Mello Quintino

Member List

jeveret
Shane T.
Sebastian Paulussen
Lorry Craig
kpise
Bastari
markentner
Michael1138
raoprasad
Hayley
unborracho
heri
Deac910
xplain
madhavan
Eric from Plainwrap
amonteiro
Sansao Machiana
systech
Dave Bos
Only Title

Henrique Mello Quintino's Q&A profile

  • Visual Studio Team System VS crashes when using unit tests

    Hello,   When I'm running unittest in visual studio  I often get the following error msgbox: COM object that has been separated from its underlying RCW cannot be used. After I click OK it's impossible to start any other test. So I use the X on the right top corner to close vs.net but then I get the following message 3 times in a row: Unexpected error encountered. It is recommended that you restart the application as soon as possible Error: HRESULT: 0x80131527 File: vsee\internal\inc\vscomptr.inl Line number: 473 After closing these 3 msgboxes the app shuts down. When I reboot everything works again, but that do ...Show All

  • Visual C# prefix and postfix unary operators

    How can I make prefix and postfix unary operators (in c++ I can write like this: TYPE operator++() //for prefix and TYPE operator++(int i) //for postfix) As far as i know the pre and post are done by the compiler and you can only overload the ++ and -- operator for the operation only: public static Number operator ++( Number number ) { number.Value++; return number; } ...Show All

  • Visual Studio 2008 (Pre-release) Two-way data binding with ColorPicker Demo

    Hi, To gt my head around two way data binding on custom controls I've been trying to bind the Color property of tow of the samle ColorPickers. I'm probably just overlooking something completly obvious but I can't for the life of me see what it is. T add to the confusion the individual bytes Red, Green and Ble bind with no trouble. Any help shaking the cobwebs from my head would be greatly appreciated. You can find the demo here: ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.WinFX4VS.1033/wpf_conceptual/html/ecb97ed4-e659-48a4-a1e0-893309569f2f.htm Thanks, Andrew This is actually a bug in the ...Show All

  • Windows Forms Single Instance app, Activate

    Using this in Main to enforce a single instance of the app: Dim firstInstance As Boolean Dim safeName As String = Application.UserAppDataPath.Replace("\", "_") Dim mtx As Mutex = New Mutex(True, safeName, firstInstance) If Not firstInstance Then Return End If Application.Run(New Form1) ... But instead of just returning if its not the first instance, I would like to Activate the existing instance's window. I guess the question is how can I get a reference to the form in the instance already running maybe you want to look here http://www.codeproject.com/dotnet/VB6andVBNETWindowMessages.asp i think if you sen ...Show All

  • Visual Studio Express Editions Hash Table Question

    Hi, what I need is as follow. I have a class that contains a string. ref class WordObj { public: String^ string; Int32 info; // further data }; Now I want to add such WordObj to a hashtable. myHT.add(wo->string, wo); As you can see, the string inside the WordObj is the key. Is it possible to prevent the hashtable object to store the string twice Once as key and a second time as part of the stored object. It is important, that the string stays part of the object. Thank you, Bernd String class in .NET is immutable. It means that it can not be modified. You can not change t ...Show All

  • Visual Studio Team System Extensibility, this unknown...

    Hello everybody, don't you think that when a poor developer knows about five base Web Services in TFS, his/her first though is about extensibility Is there any walkthrough about For a general intro to extensibility, you might like these Powerpoint decks: Our PM Doug Neumann's talk at PDC2005: http://www.google.com/url sa=U&start=15&q=http://216.55.183.13/pdc2005/slides/TLN301_Neumann.ppt&e=15235&ei=3_6ORJbUHZqKpAL7n82tBg Some more PPTs from "Tales from the Doghouse": http://blog.hundhausen.com/PermaLink,guid,bc78266f-94ff-40ad-a7c1-2d1957e65cfa.aspx ...Show All

  • Visual Basic ERROR: Unrecoverable build error when building Setup project in VS.Net 2005

    Hello, Somebody, please help me out, I got "Unrecoverable build error" when building setup project.  I try the solution in http://support.microsoft.com/kb/329214/EN-US/  but did not work out. I am totally stuck. Please, your any information, solution will be very much appreciated. Thanks! Yi-an Reboot, open your project again, got to  Build->Clean<app name> Then try to rebuild it again. Dustin. ...Show All

  • Visual Studio How to implement Rules in DSL

    Hi, Can anybody please give me Sample Code/Example to implement Rules in DSL. We want to implement Rules for connectors. Any directions for above problem will be helpful. Thanx in advance. Regards Kiran Kirdat Kiran, The VS SDK ships with some DSL samples that demonstrate using rules. Have a look at the "Example.DSLCustomizations" sample, the default location of which is "C:\Program Files\Visual Studio 2005 SDK\2006.02\VisualStudioIntegration\Samples\DSLTools\". In summary, there are three things you need to do: 1) Write a new rule class that ...Show All

  • SQL Server Grouping a query in 30 seconds

    Hi, How can I make a query and group the registries in a interval of 30 seconds...like for each line I have a datetime field that have all the day, and I need it to return just like TIME Contador_type1 Contador_type2 Total 01-01-2006 00:00:30.000 2 5 7 01-01-2006 00:01:00.000 3 7 10 It's just an example...but that's the result that I need and my table is data_hora -- datetime field tipo - 1 or 2 -- count nrtelefone - that's is the number dialed. Thanks Hum...ok..I'll check again...but do you ...Show All

  • .NET Development How to Import the Tables of Database to ExcelSheet?

    How to Import the Tables of Database to ExcelSheet Is there any SP available or Manual way I have written a ExcelExporter that can export tables from a DataSet to Excel. You can download the source code for free at http://www.gotdotnet.com/codegallery/codegallery.aspx id=5713a9fa-d115-4895-aa4f-d26766768eb8 ...Show All

  • Visual Studio Tools for Office importing data from an excel file

    hi,  i'm developing an app wich needs to read some xls files , i  found the docs, on how to open the file, and read from it, using oledb , but i was wondering if this was the only way to do this, also does vsto only reads excel 2003 files or can it read xls files from older versions of excel thanks! it's an app destined to run on Win98, excel is installed on the target machines but since i've never worked on anything related to excel programming (or office for that matter), i'm having a bit of problems finding the right documentation, i was just reading an article on early and  late binding ...Show All

  • Visual Studio Word Embeded in Crystal does not refresh! How to get it to REFRESH

    System: VS2005 Crystal Report XI R2   I create a .rpt file with embedded OLE (Linked) to a word document. I have the RPT file inside an .aspx page that shows the report. BUT everytime I update the word document the .aspx page does not show the updated document. The only time it will show the updated document is when I open the project (and it seems that its getting refreshed) then save it. Now after doing this it will show the updated document. How can I make the .aspx page show the updated document without having to open the project via VS2005      update: I created the ...Show All

  • SQL Server MS SQL Server Run time Error

    Hi We are using MS  SQL Server 2000 as back end database for our application. It was working fine certainly we are getting Run time error while try to open this application through front end. The Error number says that the SQL Transaction Log file is file . find belo the error Thanks in advance. S Kaliyan ...Show All

  • Visual Studio Team System Red x on documents folder in team explorer

    Hi all, I have TFS beta 3 refresh and every thing is working fine at the client side besides the fact that on some of the machines I cant access the documents folder from the team explorer. I guess it's not a problem of security beacuase this users have the same rights as others which can access the documents folder from the team explorer. It is also possible to access the documents from the share point portal (right clicking on the team project name) and access the "documents and lists" section. I have also tried to copy the http-url ( http://[servername]/sites/[Project ]) to an IE on a client and there the sharepoint sit ...Show All

  • Visual Studio Team System WebTest hangs with HTTP Status "Loading dependents..."

    What does it mean Several steps work ok, and then suddenly this "loading dependents" and the next request is never submited to the server. Things like "restart VS" or "Recreate the test" already tried. This means that the web test is trying to download the dependent requests (requests for images, style sheets, etc. that were embedded in the primary HTML response) but one (or more) of the responses was never received.    You could try turning off the downloading of dependent requests for the request that failed - to do this, select the request in the web test editor, go to the properties ...Show All

©2008 Software Development Network