Search results for query: *

  1. A

    Postback before Button Click Problem

    Hi, My problem is this, I have a text box and a button on the page (keeping it simple). The text box has autopostback set to True as I want it to do something everytime it is edited. This works fine, however when I edit the text box and straight away click on the button (ie the post back has not...
  2. A

    ODBC Connection problem. Please help!

    Hi, I am building an intranet site for a client and at the moment I am connecting to data on my server using a dsn, but the only way I could get it to work was to hard code the server name. Now when I come to deploy this on the clients machine although they will have the same DSN specified in...
  3. A

    String.Replace Help

    Superb!! Many thanks mzim, thats exactly what I need.
  4. A

    String.Replace Help

    Thanks for your help, but perhaps the simple example was too simple. Basically I will have some text (could be 1000's of words long). With this text I will have a function that will replace all instances of the specified word. For example I may want to replace all instances of the word 'the'...
  5. A

    String.Replace Help

    Hi, I would like to be able to do the following using String.Replace, but I can't get it to work because it is case sensitive. -------------------------------------------------------------- Private Sub Button5_Click() Dim myStr As String myStr = "ABcd abCD" MsgBox(myStr.Replace("AB"...
  6. A

    Inherits Problem

    Hi, please can someone help me with the following. I have a ComClass (so I can use it in Access) that has one public function. I would like to use this function for a button on a windows form in the same VB.Net project without using inherits and without instantiating it. Heres the code for the...
  7. A

    WithEvents Problem

    Please can someone help me with this. I have an assembly that I have written in VB.NET and using in Access 2003. The problem I am having is getting the Private WithEvents to work in Access. Heres the code I have in VB.NET ------------------------------------------------------------- Imports...
  8. A

    VB.NET DLL for use in Access

    I'm really struggling on this one. I have no problems creating a DLL in VB6 and using it in Access, but I just can't seem to create one in VB.NET and use it in Access. Can someone please help me out here and put me out of my misery? Many thanks in advance
Back
Top