Recent content by dgkindy

  1. D

    Find lastest document

    I am trying to create a document control db. Currently I have two tables: tbl_sod : contains the name of the document and other various document specific details tbl_sod_status: contains who the document was sent to and the rev of the document that was sent. I came up with the following...
  2. D

    array destruct

    Is there a way in VB to make all data in an array null without having to loop through each item?
  3. D

    Directory Creations

    I am trying to create a project folder to store various items in. I have created a program that will generate the directory string but I cannot get the directory to appear in the right folders. I thought if I maintained the full path, the folders would just be created where ever the...
  4. D

    nth character

    Why I want to be able to do is so that I can easily trim the directory string at the nth \ and then add in a new directory location C:mydocuments\floder1\folder2\folder3 C:mydocuments\floder1\folder2\folder4 C:mydocuments\floder1\folder5
  5. D

    nth character

    x = mid(mystring,n,1) n represents the starting point of the function, while the 1 represents the lenght of the trimming I will provide an example C:mydocuments\floder1\folder2\folder3 I want to locate the second \ in the string
  6. D

    nth character

    I have recently seen a function that will find the position of the nth character in a string but cannot remember what it was?
  7. D

    Inner table link

    Neil, thanks for the reply but I am still confused. I understand the concept of the table containing all dogs but the linking the lookup back to the table is what is causing me some trouble. From Sire I have the look up: SELECT tblDog.Name, tblDog.DOB, tblDog.Sex FROM tblDog; But then...
  8. D

    Inner table link

    I have seen this same question before but could not find the response. I want to build a db for a dog breeder. tblDog is a table that contains all dogs while tblParent is to represent the link back to the tblDog to store the name of the father and mother. Currently I have a lookup between...
  9. D

    Access ecuviant for Excel Date Function

    I am trying to convert an excel formula to be used in access. One of the functions used in the calculation is the Date function. What is the equivalent command in Access.. Excel formula =INT(($D$2-(DATE(YEAR($D$2+(MOD(8-WEEKDAY($D$2),7)-3)),1,1))-3+...
  10. D

    Expression Builder: MOD Function

    Are you entering this into the expression builder as part of a query. I have tried both ways and no loving. Can you cut and past the expression that you got to work from your query. I think 5 mod 2 is a VB format.
  11. D

    Expression Builder: MOD Function

    trying to use the MOD function in the expression builder but comes up with an error MOD(5,2) This is an example. The error reads, "The Expression you entered containes invaild syntax. You may have entered a comma without a preceding value or identifier" When I look in the function...
  12. D

    Max number of characters

    I have a form with a textbox that is to display PO text. Number of character is in excess of 255. The textbox is unbound and it populated with the use of a string variable. The string length has not been defined. The recordset does contain all the details. The problem is that when the field...
  13. D

    import from excel

    If the format is consistant use the Split function. You specify the delimiter and the string and it is split into the components.
  14. D

    Select Case

    I am trying to use a Select Case but have come across what does not appear to be handled well. Can some one confirm how this should be handled or should I just use a IF...Then What I want is if the Description contains the word "KIT" then that case is selected otherwise it moves on...
  15. D

    db Architecture question

    I am trying to create a spare pares generator but having trouble figuring out the architecture for the tables. I am not sure how to explain this so I think the use of an example will work best. In the example I will use a mouse as a the part, keep in mind this is only an example and would not...
Top Bottom