Search results for query: *

  • Users: kokas
  • Content: Threads
  • Order by date
  1. K

    .NET remoting vs Web Services

    Hello I would like somebody to explain to me in simple words or direct me to a resource in order to understand when should i use web services over .net remoting and vice versa. What is the big difference between these 2? Thanks
  2. K

    Catching KeyPress event

    Hello I have a windows form with the following code: PublicClass Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " PublicSubNew() MyBase.New() InitializeComponent() AddHandler Label1.KeyPress, AddressOf myKeyCounter EndSub...
  3. K

    Scripting in WinForms

    Hello I am a Javascript fan and was wondering if WinForms coders use Javascripts in their applications. I've seen them a lot used in ASP.NET applications and wanted to ask if same principles apply. Thanks
  4. K

    Opening an HTML page with button click

    Hello I want to display information in my database, not in a datagrid or other control, but in an HTML page. What is the easiest way of achieving this? Thanks
  5. K

    Displaying Xml IN IE Using Windows Forms

    Hi Everyone, I am creating an application in which the data which is entered by the user in stored in a XML File and the data is displayed in an IE. i Have completed the part of writing the data into the XML file. Is their any way of displaying the xml file in an IE using the Windows...
  6. K

    Calling MS Access Expression Builder from a .NET application

    Hello I am creating an advanced searched feature for my Windows application. If you have ever used the Expression Builder to build a form in Access, then you know what i am trying to build. My question is whether i can call the expression builder itself from my application, instead of building...
  7. K

    Which button closed the form?

    Hello I want to find which button on my form caused it to close through the Form_Closing event. In the button's Click event i have this: Private Sub btnClose_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnClose.Click Me.Close() End Sub And in the Closing event...
Back
Top