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

Software Development Network >> Gabe19's Q&A profile

Gabe19

Member List

RKaplan
RankoNS
arpan_1234
Robin Lundgren
bestofmn
tapic
hellopotato
C#Shooter
Marktold
Shaykat Chaudhuri
dotnetdev
rain_flow
Özge Çolak
Software Design Engineer
pilchieMS
Amardon
Jooo
DouglasR
alshami
Thomas Skovsende
Only Title

Gabe19's Q&A profile

  • Windows Forms Performance

    I have a pretty huge app. When I'm resizing it it lasts for few hundreds of years. I don't have time for rewriting some slow controls, so I'm wondering if somebody knows how to clear windows option "Show window contents while draging" This is only solution now for me (it really helps).. So please.. hello, This is what i done one time : Private Sub Form1_ResizeBegin(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.R ...Show All

  • Windows Forms Is it possible to write a component -Usercontrol in vb.net and use it in vb 6 enviroment?

    Hi guys, Most likely the answer is no. For some reason beyond my control and understanding the company I work for at the moment they dont want to migrate to vb.net Reason  "Too much of a rewrite." Even though i disagree with their decision I m stuck in this old tecknology for the time being. To make some step forward I was thinking of writing stuff in .net and call them from a vb 6 enviroment. Can you write Class Library UserControls Compon ...Show All

  • .NET Development Creating a remoting poxy for interface with generic types

    I've created a class that inherits from MarshalByRefObject. This class has methods that have generic types as arguments and return types. The remoting object is hosted by a windows service. I'm aware that I can't use SOAP with generics, but the TCP channel appears to work. What I want to accomplish is to create a proxy class like the ones soapsuds.exe create. That way I will not have to put the entire server application on the client, only the p ...Show All

  • Visual C# iterating through items of a combobox

    i have some text items in a combox. how can iterate through them using foreach loop and display them using messagebox. foreach(string item in comboBox1.Items) { ... } This assumes all the items in the combo box are strings of course. ...Show All

  • .NET Development .NET 2.0 WebBrowser HTML editor

    I'm working on an application which needs an HTML editor. Since I don't want to use 3rd party controls, I'd like to make an HTML editor for the .NET framework 2.0 myself. But apparently many things have changed, since the framework itself now contains the WebBrowser component. Formerly an ActiveX component was used. But I can't find any method or property for enabling design mode, like the contentEditable property, or something like that. The m ...Show All

  • SQL Server ReportViewer control

    trying to build a test page with a single ReportViewer control < rsweb : ReportViewer ID ="ReportViewer1" ProcessingMode ="remote" runat ="server"> < ServerReport DisplayName ="VSTestReport" ReportPath ="MyReports/VSTestReport" ReportServerUrl ="http: //pugrs/reportserver"/> </ rsweb : ReportViewer >   build fails with 401: Unauthorized. Not even sure where to begin troubleshooting this one. ...Show All

  • Windows Forms deployment guide

    Sorry if this has been asked before or covered on another thread .... Previously, we used the XCopy method under 1.1, whereby all we had to do was adjust the intranet security in the .net 1.1 Framework Wizard, place a shortcut on the desktop, and that was it. The new security model under 2.0 does not have the framework configuration tool or wizard unless you install the SDK (which is impractical due to its size). We have a suite of 100+ pr ...Show All

  • .NET Development Help needed for beginner

    I am converting a VB6 project to take advantage of 64-bit memory space. I plan to do this incrementally and as a first step need to convert the main calculation section. From what I've read, I think I need to create an out-of process COM server in .net so that this can run as a 64-bit app and I can leave all the UI stuff in 32-bit. I've installed VS2005 but am having trouble finding a simple example of creating a VB.net out-of process CO ...Show All

  • Visual Basic Problem with own TextBox in VS2005

    Hey NG So, I don't know, if this is an bug of VS2005 or if I offers this problem I made a new control member. It belongs to System.Windows.Forms.TextBox. I extended the "normal" textbox with some features. Now, sometimes my VS2005 crashes. (OK-It's Beta) - But when I reopen my project, all Forms can't be displayed correct - Because of an error with my control member. - After rebuilding the project (without errors) the forms are displayed correct ...Show All

  • Windows Forms Forms.Topmost = true and Tooltips - Feature or Vb2005 bug?

    I have a form for which the property Topmost = true is set. The form has controls which have tooltips. I notice that the tooltips are UNDER the form and obscured by the form. I've never seen this behavior in vb6 and it doesn't seem like a desireable behavior to me. Is there a reason for this If so, is there a work around to have tooltips where they need to be, which is not obscured by the form itself This problem may have returned. I'm ex ...Show All

  • Visual Basic Declaring Windows constants for VB.Net

    Hi, I was curious if there was an include file for VB.net that would enable you to use Windows Constants. I have found a few examples of where people declare their own Windows Constants (such as: Private Const WM_SYSCOMMAND As Integer = &H112 Private Const SC_CLOSE As Integer = &HF060 ) But I am curious if there is a file that already has this declared. I believe there was a .h file used for C++ in the past. I'm looking fo ...Show All

  • Visual Studio Team System Manual test and ordered test

    Hello, I am a newcomer to VSTS for tester. How can't I add a manual test to an ordered test sequence If my question makes no sens then how to do a sequence of manual test in VS Is there a short cut to go from one test to the other Do I need a third-party tool for my needs Thanks, Igrekkel Hi, Manual Tests can be added to Ordered Tests, and will execute in order as expected. However, n ...Show All

  • .NET Development web service authentication using VS.NET (c#)

    Hi! Does anyone know where I can find authentication examples for web services using c# in VS.NET I'm working with a smartdevice application as client. thanks. Hirahi. Hello Hirahih, We have a free book (.pdf) download that will help you get a complete understanding of .NET Security and ASP.NET security. Please view it here Building Secure ASP.NET Applications: Authentication, Authorization and Secure Communication Also take a look at the ...Show All

  • Windows Forms Could not find any parsable digits

    When I am playing with my winforms application, some times I get error message "Could not find any parsable digits". Any idea what causes this problem I need some more information about this problem, but I have a few pointers for you: I think the problem is caused when converting an empty string to a number, for instance an Int32. However, I cannot reproduce it in .NET 2.0. Are you using .NET ...Show All

  • Visual C# WndProc Msg ID

    Can you please let me know what is the WndProc Msg ID for space key This doesn't work!! Trying the same in the KeyDown event of the control directly also leaves spaces for the spacebar presses. That is the reason I was trying to get space prior to this. Thanks again in advance. ...Show All

©2008 Software Development Network

powered by phorum