Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: peryan77
  • Order by date
  1. peryan77

    If folder exist don't allow to create

    How would I go about allowing a user to create a folder in a given directory, but only if it does not already exist?
  2. peryan77

    Cannot open associate xbase file !!!

    MV040603.CDX MV040603.DBF MV040603.FPT I tried to open the above DBF file with access and I get an error saying cannot open associated xbase memo file. All the files are their. I can open it in excel, but certain fields (prob those memo fields I need) are scrambled up. Does anyone know the...
  3. peryan77

    Problem with apostrophe in Name Ex: O'neil

    Thanks soo much it worked. I did not know about this and I have been using access for 4 yrs. Never stumbled upon this dilemma before. Patrick
  4. peryan77

    Problem with apostrophe in Name Ex: O'neil

    I have a combo box on my form and when I select a record from it (employee name) it goes to matching record in subform. However, i get an error when i select an employee name with an apostrophe in it. Syntax error, missing operator in expression. Here is my code..it works fine with all the...
  5. peryan77

    Unlock all controls on Page 1 of Tab Control

    I could of sworn I posted a thank you and gave u a star. Wait I did, look above, I said thanks, it works great. I have not used the second posting of your code. I will try and implement it when I have more time. They have me doing a million and one things all at once. Thanks again.
  6. peryan77

    DTPicker Control to Current Date

    It does not have this property. Object does not support this property or method.
  7. peryan77

    DTPicker Control to Current Date

    I am trying to set the DTPicker control to current date. Here is my code: Dim CurDate as Date CurDate = Date() Me.DatePicker.Value = CurDat The error I get is that the property is read only.
  8. peryan77

    Importing Excel Spread Sheets with VBA

    Something like this... Sub ADOFromExcelToAccess() ' exports data from the active worksheet to a table in an Access database ' this procedure must be edited before use Dim cn As ADODB.Connection, rs As ADODB.Recordset, r As Long ' connect to the Access database Set cn = New...
  9. peryan77

    Adding file to database without inflating

    About 5 months ago I saw an access database that showed how to add a file to the database without inflating it. Does anyone know how to do it, or possibly know what site it was located on?
  10. peryan77

    Ways To Speed Up Split Database on Network

    Thanks a lot. I will use all the methods I can. The database is quite small now, but will grow as I continue to add more features and data.
  11. peryan77

    Ways To Speed Up Split Database on Network

    I have a split database on the network, unfortunately it is too slow. Are there ways to speed up the connection?? Some users access it using WAN. Unfortunately, they will not let me create a SQL Server Database.
  12. peryan77

    Microsoft DateTimePicker Control - Change Event?

    What Event would I use to initialize my code right after the person changes the date in this control? I do not see a change event for this control when I look under it's properties.
  13. peryan77

    Unlock all controls on Page 1 of Tab Control

    Thanks Cajun, it works great.
  14. peryan77

    Unlock all controls on Page 1 of Tab Control

    I didn't think it was possible either, I really rather stay away from renaming all those controls, it makes it harder to go back and recode and errors when you lose track which field = what control. I presume you can use TAG property and just embedded another if statement in the code? I will...
  15. peryan77

    Unlock all controls on Page 1 of Tab Control

    I want to unlock about 12 controls (textbox and combo) on page1 of a tab control. What is the best way to do this?
  16. peryan77

    Emulate Hyperlink - Changing mouse icon.

    Is it possible to change mouse pointer to hand? I am not familair with API yet. Can someone point me in the right direction.
  17. peryan77

    Sending E-mail

    By the way this is what I have... Function SendE-mail(controlvalue) Dim otk As Object Dim eml As Object Const olMailItem = 0 Set otk = CreateObject("Outlook.Application") Set eml = otk.CreateItem(olMailItem) With eml .To = controlvalue...
  18. peryan77

    Sending E-mail

    I want to create ONE module that I can call from the onclick event of any text box on my form that will send an e-mail to the value in the textbox. I have 3 text controls that have different e-mail addresses. I do not want to rewrite the code 3 times. Is there a function that could do this...
  19. peryan77

    Need Help With Query

    I would like to return those records where Action = "Change Plan" for 3 months in a row (past three months) for all the users. These are the users where we have to change their plan because it has been recommended to do so three times in a row. One record would look like this...

Part and Inventory Search

Back
Top