Rogerio B. Villas Boas's Q&A profile
Visual Studio Express Editions VISUAL BASIC EXPRESS - 2 COPIES
Several weeks ago I installed VB Express from a CD On Friday I installed Visual Studio Express from a DVD which I received from Microsoft. Do I now have 2 copies of VB Express on my computer If I do , can I use the Uninstall program to delete the 1st VB Express installation Visual Basic Express Edition is a product that can be individually installed and uninstalled. If you want to uninstall it you should be able to find it in the add and remove programs in the control panel. I have not heard of a Visual Studio Express Edition. Do you mean the full Visual Studio 2005 product If you have VS2005 installed VBEE will be red ...Show All
Visual Studio Team System Unexpected token with user defined functions
Just imported a small test database (SQL Server 2000 in a SQL Server 2000 project) and found out that all objects (SPs, Views ecc.) referencing a scalar UDF returns error "Unexpected token was encountered". I tried also creating a new 2000 project with a very simple scalar UDF, and a view referencing it, and got the same error. This appears to be a parser error. Could you post the actual code you are using so that we can test this and attempt to identify the issue thanks Matt ...Show All
Windows Forms DataGridView - when I select an item in a combobox i dont want a new row of comboboxes
Hi everyone, I've searched the forums far and wide and I cannot find an answer to my question. Basically, I have a form with a number of items on it including a datagridview. I have a sub in this form which initializes the datagridview with a number of combobox columns (all pulled from different datatables), and because I have used raw queries to populate the datatables, all columns are unbound. Whenever I select a value from any combobox, a new row of combos is created (which I dont want ... this single row within a datagridview acts as a filter for another datagridview on the same form). Now, if I set AllowUserToAddRows = False (either fro ...Show All
Windows Forms When escape pressed in un-edited NewRow, ImageColumn not set
I have an unbound column containing a DataGridViewImageColumn, which contains an icon i use for a popup 'chooser' form. To ensure the image is displayed (and not an 'x') for each row i have handled the DefaultValuesNeeded event and the RowsAdded event, setting the image column to null. So far so good. But i have found one specific case where i still get the 'x' appearing in that column. If i select the new row (one with the star next to it), then hit the escape key, the new row seems to be replaced and the image column contains an 'x'. It appears that the RowsAdded is not called in this case. Any ideas on what event i can capture in this cas ...Show All
Visual C# Row Filter
I wanna filter a dataview. The column which is used is password and the string contains ' sign. That's the problem. For example: [DataViewName].RowFilter = "'I ' mVerygOOd'" The ' makes ana error. What can I do That doesn't work or I have missunderstood. I tried it so: The password was c#'llCOMESOoN I typed c#\\'llCOMESOoN And got the error again! ...Show All
Microsoft ISV Community Center Forums day of the week
hello all. my macro must include some logic that's based on whether certain events happened on the weekend or a week day. does anyone know the code to tell what day a certain date falls on The WeekDay function might help http://msdn.microsoft.com/library/en-us/dnvbadev/html/pullingpiecesapart.asp ...Show All
Visual Studio Team System TFS Install - Quad 1.8GHZ Xeon... Not Good Enough ?
I am trying to install TFS on a quad 1.8GHZ with 4GB ram; this should be enough to run a TFS trial at my company for 2-5 users. However the TFS install requirements checker prevents me from installing the product because of a minimum speed of processor requirement. I have four 1.8GHZ Xeon chips, that should be plenty. Is their a command line install that can bypass this check Thank you, John Hi, thank you for the replies. I thought it was a stop error because I could not continue, when I clicked the link for the error screen it stated the ...Show All
Windows Forms Raise an event from the IE Browser Control?
Is it possible to embed the IE Browser Control inside a windows form, then load an html document inside the Browser Control (such as a report) and then click on a link on the html document and have it raise an event in the windows forms applications Any examples of this, or a point in the right direction would be great! Thanks, Eric ...Show All
Visual Studio Express Editions Free VB 2005 Express Edition Tutorials?
Firstly let me give a big "Wassup!" to all the VB programmers out there! I have recently moved over from the Delphi platform to the VB platform and joined the ranks of a far better programming language... (Sorry to all those Delphi PPL) I have taken the www.learnvisualstudio.net tutorials and found them to be very informative and extremely helpful but I was wondering if there isn't an online community of VB 2005 Express developers where I can find further information If anyone knows of a great source of tutorials, examples, etc. please let me know The one drawback of using Sleep is, well....your app is asleep. Below is another w ...Show All
System Center Windows Vista
Hi, as I'm interested in testing Windows Vista, I wanna download it. But, I'm not a MSDN subscriber. So, to become a member, I need to have a Benefit Access Number. Where do I get it At first, please note, these forums are for Windows development ONLY, anyway, to be MSDN subscriber click here ... ...Show All
Visual Studio Team System Error message for December CTP - Error 28925.TFServerStatusValidator: UnexpectedError
Getting this message at the very end of install: Error 28925.TFServerStatusValidator: UnexpectedError Hit cancel when I got the error and got the following data from the log files: [12/06/05,16:58:15] Microsoft Visual Studio 2005 Team Foundation Server - ENU: ***ERRORLOG EVENT*** : WARNING:Warning 32000. The Commandline '"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\Bin\Stsadm.exe" ...' returned non-zero value: -1. [12/06/05,17:02:09] vs70uimgr: Entering DisplayMessage() method. [12/06/05,17:02:09] vs70uimgr: DisplayMessage_START:Error 28925.TFServerStatusValidator: UnexpectedError [12/06/05,17:05:11] vs70uimgr: Di ...Show All
Smart Device Development Handling HotKey Presses
What would be the correct way to handle HotKey( Calendar, Home, email...) presses so that it works across all the different PocketPC 2003 and 5.0 devices out For example the Dell Axim x50 and x30 have different key codes (0xC2 vs 0xC1) for the calendar key. How do people handle this Thanks ...Show All
Visual C++ Native allocation in a managed C++ class library
Hello, I just want to allocate a native object using the IJW in a managed class library. I usually do this normally in a Windows Forms application. But when I make managed C++ class library and try to allocate with new keyword it doesn't recognize this keyword . I don't why . Thanks, Mustafa ELBanna Hello, Thanks, But I must know the reason of why it works now Thanks, Mustafa ELBanna ...Show All
Visual C# A problem about binary file source safe versioning
Does anyone of you ever try to check in your binary files for versioning We have this habit since the day when we work on VB projects. Since COM versioning is very important, we have very clear habit to keep different versions of the DLLs. Now in .net, with VS.NET 2003, we realize there is a very strange behaviour which prevents binary files checking from working properly. Lets say, we have 3 projects: ClassLibrary1, ClassLibrary2, WindowsApplication1 -->: reference ClassLibrary2 --> ClassLibrary1 WindowsApplication1 --> ClassLibrary1, ClassLibrary2 When I have checked out all WindowsApplication1 binary files, while leaving ClassLib ...Show All
Windows Forms Problems
Hi. i have a bug thats now sami-alright, so i tryed to add it to the eco system, and it added fine, no errors or nuthing. arfter about 10 minits no bugs had been teleported to me, and all my bugs that got teleported came back, anyone know what i can do about this thanks Hi, soz about the delay. i have no firewall or&nbs ...Show All
