Search results

  1. J

    Hyperlink based on field value

    Less or more I understand what you mean , but have no idea how to implement this. Could you please help with this sample? Thanks
  2. J

    Hyperlink based on field value

    I have excel file with two fields: Website column is a function: =+HYPERLINK("http://www."&A3&".com","Press..") When importing to Access , the link is disappeared. How to keep the 'Website' field value, based on 'Model' (as in Excel)?
  3. J

    Creating list of records by given range of numbers

    I have a range of board serial numbers, starting from SN0000001 and till SN0001000. How can I create automatically 1000 records, what the VBA code to do that?
  4. J

    Incrementing field by one

    You're right, it's text. I tried to to make CInt(...), but it doesn't help. Is any way to change it to Number, if I alredy have tables with relations?
  5. J

    Incrementing field by one

    Increment field by one is not working I have some code: Private Sub SamplesReceived_Click() Dim SLFIDUpdate As String ' avoiding "Write Conflict Error" Me.Dirty = False ' open modal form with a current record DoCmd.OpenForm "SamplesReceived", , , "[SamplesID]=" &...
  6. J

    Tables protection in Access 2007

    sorry for my ignorant, could you explain technically how I do that?
  7. J

    Tables protection in Access 2007

    Hello guys, As I understood from MSDN, new Access does not table protections. If I have a database for 10 users, how can I limit using forms only and to avoid users access to tables?
  8. J

    Tables Solution of Car Ordering

    I am building a database for cars ordering. Please advise how to solve , with one table or two tables following issue: I need to order cars , and when the car is receiving to update relevant record.
  9. J

    Open a form when check box checked

    Please find below event of "check box click" Private Sub CarPurchased_Click() On Error GoTo CarPurchased_Err Dim intAnswer As Integer Dim strSQL As String intAnswer = MsgBox("Would you like to update new cars?", vbQuestion + vbYesNo, "Cars Purchased") If intAnswer =...
  10. J

    Limit access to tables and forms in Access

    Can you explain it in easie language..? Sorry for my nescience
  11. J

    Open a form when check box checked

    When I checking the checkbox will be opened modal form where in the fields will be values of current record. Could you help with a code ?
  12. J

    Limit access to tables and forms in Access

    How I can in Access 2007 lock with password all tables and forms, and to leave only one form for use.
  13. J

    Open a form when check box checked

    This in not a table , this is a form in datasheet view.
  14. J

    Open a form when check box checked

    I want to write some code when I'm checking "Purchased (Y/N)" field then opening existing form with filled fields. It must be something like: Private Sub Purchased_(Y/N)_Click() ... DoCmd.OpenForm ... End Sub
  15. J

    Filling a form from another

    Thank you , pbaldy! I learned something new..
  16. J

    Filling a form from another

    I have two forms: "New City" and "City Form". "City Form" has a combobox for City selection, which bound to table "Cities". The user is selecting a value from combo box. When the value does not exist, I wish to add "New City" button, that will open "New City" form. After filling this form I will...
  17. J

    Creating report from Word file

    Yes, sure, why not.
  18. J

    Creating report from Word file

    Hi wiklendt, I attacked the problem from another side. I added bookmarks in my *doc file, and pointed to those bookmarks from Access code. Example: Set objRange = doc.Goto(What:=wdGoToBookmark, Name:="bkmSamples") objRange.InsertAfter (Samples_ID.Value) Regards..
  19. J

    Turning Combobox to Dropdownlist

    I'm not sure that this helps, I actually need to avoid typing in combobox. In C# this style calls 'Dropdownlist'.
  20. J

    Turning Combobox to Dropdownlist

    How can I turn Combobox to Dropdownlist , it means "to disable" typing in combobox?
Back
Top Bottom