Search results for query: *

  • Users: kokas
  • 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

    So my mistake was the delegate: AddHandler Label1.KeyPress, AddressOf myKeyCounter if i say AddHandler Form1.KeyPress, AddressOf myKeyCounter then it would be alright?
  3. K

    How to change the msgbox font and style

    I would say create your own form...the size of a usual msgbox and set its properties as you wish. so instead of msgbox("blabla") do "dim f as MsgForm" and show it
  4. 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...
  5. K

    Scripting in WinForms

    thanks kevin i shall have a look
  6. 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
  7. K

    Opening an HTML page with button click

    Sorry i didnt make it clear. I want to create one first and then display it. Any ideas?
  8. 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
  9. 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...
  10. 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...
  11. K

    Which button closed the form?

    Thanks guys. I had already done the 2nd solution and it worked fine. I will try the harder 1st one and let u know.
  12. 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