Recent content by OlcayM

  1. O

    VBA Code for vbCrLF for Memo RTF Field

    Well, I found a solution on net. Just put "<br> instead of vbCrLf and voila. Sorry and Thanks...:)
  2. O

    VBA Code for vbCrLF for Memo RTF Field

    SOLVED:VBA Code for vbCrLF for Memo RTF Field I have a wierd problem. Version: MS Access 2010. 1) A memo field with RTF enabled and Enter key behaviour as new line. Name: MemoField1 2) I have a button to add a new date to the beginning of MemoField1. Name: AddDateButton Code...
  3. O

    ELookup vs. DLookup

    Allen Bowne Says That:) DLookup() can call the expression service to resolve an argument such as: DLookup("Surname", "Clients", "ClientID = [Forms].[Form1].[ClientID]") You can resolve the last issue by concatenating the value into the string: ELookup("Surname", "Clients", "ClientID = " &...
  4. O

    Available Com Ports List

    Thanks a lot UncleGizmo, You are absolutely right. I found the solution. May be it will help someone else also. The answer is API. It is below; OlcayM Author:Andrea Tincani Option Explicit 'API Declarations Public Declare Function CreateFile Lib "kernel32.dll" Alias "CreateFileA" (ByVal...
  5. O

    Available Com Ports List

    Hi All, I need to know the available com port numbers for a certain project. Just the prot numbers, like seen in device manager screen in system. And naturally I don't want to pay for an activex. Any ideas? TIA OlcayM
  6. O

    Printing from access

    Hi, This link will help you a lot. http://support.microsoft.com/kb/311765 Olcaym
  7. O

    Database Connection Issues

    Hi, Some time ago, I used a software named "WEBDrive" for a similar problem. This software lets you MAP and IP as a drive like "F:\" . Then you work with your database like you are in a LAN. But, as far as I remember this had some restrictions. Otherwise, I believe that, it will take quite a...
  8. O

    How to call a text box within tab control?

    Hi, If the name of the subform (name in the main form as subform , not the name of form itself seen as sourceobject) is "subfrm_datasheet_milestone" then But if the subform's own name is "subfrm_datasheet_milestone" but main form defines it as something else (like subFormA) then Please note...
  9. O

    duplicate record VB help

    "How to I duplicate though just the current record that the user is viewing?" This is not a problem Do you know how to create an append query? If not, send your database (if you feel comfortable and only the part with the problem) and I 'll try to solve and send back.
  10. O

    duplicate record VB help

    Hi, I recommend you another way of doing it 1) Make a query to append on the current record of main form, except link field. It seems you are assigning it. So during the run of the query, query must take the link field's value from somewhere you prefer (an unbound field in your form, or an...
  11. O

    Using Excel Worksheet Function in Code

    There is a tiny problem Change "Function RndDwnII() As Double()" to "Function RndDwnII() As Double" HTH OlcayM
  12. O

    ADO find function problem

    Hi, I know approx. nothing about ADO. I work wirh DAO and in access. But in your situation, I believe you first have to EDIT before line rsJobs.Fields("memo") = rsJobs.Fields("memo") & "My text here" OlcayM
  13. O

    Import contacts from access into outlook - overwrite duplicates

    I am really sorry, but I misunderstood. Mine is not a solution for your problem. OlcayM
  14. O

    ADO find function problem

    Do you think rsJobs.find "JobReference= ' " & cstr(find) & "'" works? OlcayM
  15. O

    events on application open/close

    1) Create a form with a name "frmHidden" 2) Forms load event put anything you wish 3) Forms close event put anything you wish 4) Save & close form 5) Create a macro with the name "autoexec" 6) Use openform command in the macro for frmHidden 7) Set Window mode option "Hidden" 8) Save macro and...
Back
Top Bottom