JeremyRooks's Q&A profile
.NET Development Remoting and SOAP
1. I have an ASP.NET client outside the firewall. It needs to communicate with a .NET server inside the firewall via Remoting. Is IIS needed for this to work 2. I have a Windows client outside the firewall. It needs to communicate with a .NET server inside the firewall via SOAP. Is IIS needed for this to work Thanks, evb5145 1. Remoting is not dependent on IIS.However you do need something to listen on the other side for the remot ...Show All
Visual Basic ListBox as an argument
Here is one for the group. Can a list box become an argument, ie. ListBox(21) ListBox(22) My problem is that I have several list boxes with data. I need to compare ListBox1 with ListBox2 and 3 and so on. It would be so much easier to use a variable like ListBox(x) as the list box number. Thanks, rmc The easiest way is to create an array of the TextBox type and add your TextBoxes to it ala: 'Create ...Show All
Windows Forms BindingSource Delete/Change
In a form, I have a BindingSource which is bound to a CollectionBase derived class instance. And there is a BindingNavigator and a DataGridView for browsing on the same form. They are both bound to the BindingSource . I hope to display the detail of the child object in another form for deletion or modification when I click the update/delete button in the BindingNavigator toolstrip. This allows the user to, for example, ...Show All
Visual Studio 2008 (Pre-release) ADO.NET 3.0 Tech Preview?
The ADO.NET Entity Framework documents refer to a Tech Preview. Is one on its way and will it involve a new LINQ/LINQ to SQL/LINQ to XML CTP Thanks. AUGUST is the month of the moment See http://www.base4.net/Blog.aspx ID=44 ...Show All
Visual Studio Team System Missing database updates when running a Web Test
When recording my Web Test I do some actions which add some posts to my database. After the recording the updates are as expected. But then when I run my Web Test it doesn’t perform any updates at all. I also added the Web Test into a Load Test, but still it won’t do any updates. Might there be some special settings in the test tool in order to allow database updates There is nothing special you should need to ...Show All
Visual C# Add default formatting to new classes
Is there a way to set up the IDE to include some default comments / formatting when a new class is created It is possible by creating addin for the Visual studio IDE, using addin we can control the operation's of IDE for more information on addin please look these link http://www.c-sharpcorner.com/Code/2002/Oct/AddIns.asp http://msdn2.microsoft.com/en-us/library/5abkeks7(VS.80).aspx ...Show All
.NET Development Error deleting a TableAdapter from dataset.xsd
When I delete or make a change to a TableAdapter the form to which I have this TableAdapter bound displays an error message and does not allow me to get to the form to change the Data Source property. Why is this and how do I make actions like this refactor or where do I change the code to disconnect this property Michael I have come across this same problem. It seems a bit silly that all generated code isnt re ...Show All
Visual Studio Express Editions Can I use Addins in Visual Studio Express Editions?
Can I use Addins in Visual Studio Express Editions How ...Show All
Visual Studio 2008 (Pre-release) FlowDocument rendering questions
If I want to render a FlowDocument to an irregular area what are the best approaches I would like to be able to render a flow document to a series of rectangles that are not arranged in Y linear order. Basically, allow free-form page layout with content flowing from one place on the page to the next. Can this be done with any existing control While FlowDocument supports columns and floaters and such to do simple page layout, is that all there ...Show All
Windows Forms Borders.
The borders available in the Windows Forms base class are ridiculously limited, and not are they limited they are even a class that you can easily subclass to do what you want, they are an enumerated property. im probably ju ...Show All
Smart Device Development Stop connection balloon?
Hi Guys, Anyone know if it's possible to hide or stop the connection balloon from coming to front My app dials a GPRS connection but this causes the balloon to appear on the screen until it's connected. I'd really like to stop that happening. Thanks John The following post has pointers to places where you can post non-VS 2005 questions http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=255386&SiteID= ...Show All
Visual C++ unhandled exception in [my app.exe] NTDLL.DLL 0xC0000005: access violation
Hello, I am having problems with the above error which pops up when I try to run my application. The problem only occurs when I try to add the following to my program (if i remove the code again it runs fine): I was trying to add a control for a combobox and found what i needed on the following thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=282849&SiteID=1 Using the Class Wizard I added the control variable and thu ...Show All
SQL Server SQL Server 2005 stdevp function
I am currently unable to get the stdevp function to work. The query is as follows: SELECT stdevp(Schedule_Weight) AS Expr1 FROM Order_Start_Steps_Weights WHERE (Schedule_Weight_Type = 1) When I try to execute the query (from either BIDS or SSMS) the query gets changed to: SELECT COUNT_BIG(Schedule_Weight) AS Expr1 FROM Order_Start_Steps_Weights WHERE (Schedule_Weight_Type = 1) I should mention that the stdev function ...Show All
Windows Forms System.Deployment.Application.InvalidDeploymentException on some machines
Hi! I'm getting the following exception when trying to install my ClickOnce-App on some machines: PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) &n ...Show All
Visual C++ NET and mfc
how can i use the forms made in net and use it in mfc programs Yes: Windows Forms/MFC Programming Differences Hosting a Windows Form User Control in an MFC Dialog Box Hosting a Windows Form User Control as an MFC View Hosting a Windows Form User Control as an MFC Dialog Box Blog by Yves Dolce: MFC 8 (VC++ 2005) and Windows Forms MFC and WinForms Integration ...Show All
