Recent content by NeoNemesis

  1. N

    Getting Started

    Cheers mate, will try it out in the morning!
  2. N

    Getting Started

    I am creating a database in Access to store all of my customers that I do business with and also storing all the details of the visits that I make to them. I am planning to add bits extra to it after the main bulk has been done. Currently I have two tables as follows, Customer Details...
  3. N

    Multiples of 8

    40 is valid as a computer can have two chips, one 32mb and one 8mb chip in it, together make 40mb.
  4. N

    Multiples of 8

    eh? Any chance someone could write the expression for me...pwetty pwease!
  5. N

    Multiples of 8

    I have created a database which catalogues computers and their components. I thought that a good validation rule for the Memory field. The only problem is that I dont know the expression to use. So.. what expression do i need to only allow numbers which are multiples of 8 eg, 8, 16, 32, 64...
  6. N

    INSERT INTO help

    Thanks, i have it sorted now: Private Sub MaxLicenceNumber_AfterUpdate() Dim i As Integer Dim turn As Integer Dim curdb As Database Dim strVal As String Dim SQLSTmt As String Dim PackageID As String PackageID = Me.PackageID turn = 1 For turn =...
  7. N

    INSERT INTO help

    I have the following code in my access project which takes a string (PackageCode) from my tblPackage table, and uses a loop to insert this string with a numerically incrementing suffix. The loop loops to the value in MaxLicenceNumber. EG. If PackageCode = MSE00 and MaxLicenceNumber = 4 then in...
  8. N

    VB and Table help

    Can anyone out there lend me some help?? Please?!
  9. N

    VB and Table help

    First let me outline my problem. I am creating a database that will catalogue all of the computers at my office. It will also catalogue what software is installed IN them and what Software is installed ON them. I am having no problems with the hardware side of things. The software is a...
  10. N

    Inserting and removing records

    The parent - child relationship stuff.
  11. N

    Inserting and removing records

    Thank you for the reply, is there any chance that you could expand on that a little bit. I have trouble understanding the database theory concepts.
  12. N

    Inserting and removing records

    Hi, I am a complete novice when it comes to VB coding. I have managed to cobble together the following script so which adds records into a table called "LicenceTable". The problem. I am creating a database that will (hopefully) be able to catalogue the Software Titles that my company has and...
  13. N

    INSERT INTO not inserting

    Private Sub Max_Licence_Number_AfterUpdate() Dim i As Integer Dim turn As Integer Dim curdb As Database Dim strVal As String Dim SQLSTmt As String Dim PackageID As String turn = 1 For turn = 1 To Me.Max_Licence_Number strVal = GetLicenceInc(turn) Set curdb = CurrentDb() SQLSTmt = "INSERT INTO...
  14. N

    INSERT INTO not inserting

    I have had a lot of help cobbling together a script which is designed to perform a solution to the following problem: am making a database system the will catalogue all of the software that a company uses. There are many software titles, such as MS Word, MS Excel or WinXP. As this company wants...
  15. N

    VBA Newbie, please help!

    Im sorry, i feel so stupid, I am trying research on the side in an attempt to get this to work but i just cant. It appears that everything is ok, but evidently it is not. What do you mean by the provision in your routines etc.? Neo
Top Bottom