Julio Parra's Q&A profile
.NET Development Urgent Problem - Receiving 0 bytes when sending bytes to remote socket
Hi, I'm having a real urgent problem that only started to show in production. We're using async SSL sockets broadcasting packets to several clients. However, some clients reply with 0 bytes when the packets are sent to them, whereas this problem never showed on our internal network. This only happens for clients connected via the internet. Any idea what could be going on here Tom What do you mean by SSL Socket ...Show All
Visual Studio Team System Missing 'Business Intelligence Project' type in the New Project dialog
Hello, I just watched a demo of creating test reports in Team System where they talk about a project type called ‘Business Intelligence Project’. But in the version of VS I have, when I go to File -> New -> Project, I don’t see Business Intelligence Projects in the New Project dialog box. I think I have the latest version of Team System in my machine ( Visual Studio Team Suite, RET - 50727.21 ). Any ideas here What verison do ...Show All
SQL Server Unable to Uninstall SQL server 2005 Express
When I try to un install SQL Server Express (VS 2005 Beta 2), which is not functional, I get an error message: The SQL Server System Configuration Checker cannot be executed due to WMI Configuration on the machine MACHINE_NAME Error:2147746132 (0x80040154). I ran the Windows Install Cleanup tool but that didn't help. SQL Server 2005 Express is still listed in the list of Applications in the Add/Remove dialog. I tried the uninstall for SQL S ...Show All
Visual Studio Team System reverse engineering
I have been trying to reverse engineer a Visual FoxPro (VFP) 6 database with Visio for Enterprise Architects with not much luck. I'm thinking I need a Visio driver for VFP because when I run the reverse engineering wizard I get a list of "installed Visio drivers" to use but VFP isn't on the list and when I use the ODBC Generic Driver I get the warning: "You are using a Visio 'ODBC Generic Driver' to connect with a 'Visual FoxPro' ...Show All
.NET Development IIS on Windows Xp Home
hi, can any one help me out in installing IIS on Windows XP home edition, I tried a lot but was unable to do so. thanx firstly the thread is in the incorrect forum, best to post your question over at the appropriate communities: http://www.microsoft.com/communities secondly, it is NOT possible to install and use IIS on XP Home. It was taken out for a reason and there was a reason ...Show All
Visual Studio 2008 (Pre-release) Error at element 'StaticExtension' in markup file '' : Binary format of the specified custom attribute was invalid..
I'm getting the above error in my WinFX Windows Apps (including XAMLPad when it tries to start - I've never succeeded in opening it, so it can't be badly formed XAML) at line 51: return app.Run(args); in MyApp.g.cs Stack trace is given as follows: " at System.Reflection.CustomAttributeEncodedArgument.ParseAttributeArguments(IntPtr pCa, Int32 cCa, CustomAttributeCtorParameter[]& CustomAttributeCtorParameters, CustomAttributeNamedP ...Show All
.NET Development MessageQueue.BeginReceive method
I like to know whether MessageQueue.BeginReceive() will receive messages FIFO or not. Another Question MessageQueue.BeginReceive uses IAsyncResult to callback which intern uses ThreadPool to call to client. Its any drawback of using ThreadPool. vichu wrote: Thanks for your quick reply. I am consuming the message one by one. Once I process the message then I call BeginReceive method. Its Ok. My code is like this. ...Show All
Visual Basic Datagridview "HideSelection"
I'm using an unbound datagridview to display information, and I need to color-code certain cells to alert the user to status events. Is there a way to not have the selected row highlighted when the control does not have focus (similar to the VB6 .HideSelection property) I would explore using the DataGridViewx.SelectionChanged method to test your condition and if not met, set the Style.Backcolor to normal - else ...Show All
Visual Basic Is Window Obscured - Hidden - Visible
Hi All, I have been working out how to test if a Window is obscured by another Window. For example; You have App1 and Notepad open. Notepad is the selected (active) Window. Notepad is only slightly or completely obscuring App1. After a bit of research I have found the only way to achieve this is to enumerate each Window in the Z-Order and to check the rectangle of each Window with the test Window. If anyone has a better s ...Show All
Visual Studio 2008 (Pre-release) Adding query results to a List, can it be done?
I've been testing linq and I'm wondering if this can be done. The code compiles fine but crashes when run. I'm trying to get LINQ to create a new instance of my class for each result set that I then add to a typed list using foreach. Now, is it not working because my class does not implement IEnumerable or is it some other reason Here's the code snip I'm trying to get to work. using System; using System.Collections.Generic; ...Show All
Architecture Are MS Architectural Sample Applications being updated (for .net 2.0) ?
Do someone have any information about release date for .NET Architectural Sample Applications (Duwamish, Fitch and Mather, etc) updated for .NET 2.0 and Visual Studio 2005 Thanks for any information. I think Ido is right However, be sure to check out Enterprise Library which is already all set to take on enterprise .Net 2.0 development... Check the details here -> http://msmvps.com/blogs/rohanthom ...Show All
Visual Studio 2008 (Pre-release) Can TextBlock be made to auto-scale its font to fit into height/width?
I can't seem to find a way to create a TextBlock with a fixed size and get its text contents to be "best fit", e.g. to automatically scale the font so that all the text is visible. I tried putting a Viewbox around the TextBlock, and that almost worked - it forced the font to be appropriately small to make the contents fit. However, it seemed to ignore the wrapping functionality of the TextBlock, so it made all of the text fit on one ...Show All
SQL Server How Can I Do This Better in SQL 2005?
I have two tables, one contains ids(very small, less than 100) and the other contains history(very large, over 1000 mil); table a (id int) table b (id int, contact_datetime datetime, id2 int, id3 int) I need to pull latest contact date and other id fields from table b fastest possible. in 2000, I did following sql query, select a.id, b.contact_datetime, b.id2, b.id3 from table a inner join table b on b.id = a.id where b.c ...Show All
Windows Forms CodeDomSerializer and resx
Hi! I would like to store one property of my component in to the resx file of the Form that contains it. Is there a code sample somewhere that shows how to do it I found this: http://www.vbcity.com/forums/topic.asp tid=22348 But it is missing way too many things. I would really appreciate a generic pattern on how to save the values of objects storing binary data to the resx file. (should be in C# if possible) Thanks! Atmapuri ...Show All
Windows Forms Problem with value DataGridViewComboBoxCell
In VB 2005 Express I have a problem, which completely do not understand. I use a DataGridViewComboBox in a DataGridView. When I change data and save it, I have no problem. But when I close the form I a repeting error, being: System.ArgumentException: DataGridViewComboBoxCell value is not valid. Can anybody help Thanks in advance, Simon Does the data you saved exist in the DataGridViewComboBoxCell's items lis ...Show All
