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 TouchToneTommy 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: sirkenj
  • Order by date
  1. sirkenj

    Using sharepoint (my site) list data in a mtg workspace

    Hello again. I have a sharepoint services site with several lists I want to be able to link to (with lookup fields) in a meeting workspace. I was wondering if anyone has done this or knows of a way to do this. Right now, in the meeting workspace, I can't see a way to link to a list not...
  2. sirkenj

    Sharepoint database use / access

    Hello, fairly new here to sharepoint! I have a strong background in Access, and am trying to make some access data available to Sharepoint. I have found the simplest way (I think!) is to create a list in WSS, then link that list into Access. This lets me update data programatically, but what...
  3. sirkenj

    VBA Conditional Formatting Problem

    I am using continuous forms, and have looked at conditional formatting. I only posted "part" of the problem...I realize if I'm dealing with only 4 possible variables in txtSrat, I can use conditional formatting. The problem is that there needs to be an If..Then statement before the conditional...
  4. sirkenj

    VBA Conditional Formatting Problem

    Hello again! Once again, I'm stumped! I'm trying to code a form to do conditional formatting based on the value of a text box. My text box is txtSrat, whose value is derived from a function. The function will return either "S1", "S2", "S3", or "S4". I want to highlight each line differently...
  5. sirkenj

    multiselect list box automatically select items

    Hello again! Anyone out there that can enlighten me as to how to setup my form so the list box (Simple multilist) will open with several items already selected? I have the multiselect listbox feeding a query, but can't figure out for the life of me how to tell it which items to select when the...
  6. sirkenj

    Access folder permissions

    Hello, I have a split database with the backend on a server, and "some" of the front-ends on the server. (most are on each machine though) My question is what are the minimum permissions that must be given to a user or group of users to let them see the file or shortcut, and launch and use the...
  7. sirkenj

    Web based backend? Is it possible?

    Although it's somewhat like fixing a broken leg with a band-aid, I am able to use WebDrive (maps network drive to an ftp site) to link to the database. It's not fast, but does decent. I have managed to use replication to "sync" a local copy and the server copy using WebDrive to assign the ftp...
  8. sirkenj

    Web based backend? Is it possible?

    OK, so what if I create another database on the server on either an FTP or HTTP site, and link to the tables being updated from the website? Could I then open the second database locally / remotely via ODBC or some other method? (or would it still lock the backend to web users? If this is not...
  9. sirkenj

    Web based backend? Is it possible?

    Hello again, all! I am curious if there is a way to link a database on my local PC to a backend on a webserver? I have an .mdb which gets updated through .asp on the server, and would like to link straight to it from my local PC. I have tried setting it up as ODBC to no avail. I know I can...
  10. sirkenj

    Rounding up to nearest .25....need some help!!!

    Thank you all SO much. I ultimately am using CajunCenturions example above. I never thought to approach this from that angle, and somehow overlooked declaring the type of variables (though I took the time to tell you all what they were in my post!)
  11. sirkenj

    Rounding up to nearest .25....need some help!!!

    Hello again! I have the function below contained in a module in my database. It's purpose is to return a value rounded up to the nearest .25. It is currently returning #ERROR, and I am hoping some of you wiser than me might be able to offer me some suggestions as to the possible cause. The...
  12. sirkenj

    Using date function result as criteria in a query?

    I compile that code fine, then get a runtime error on: Holidays = DCount(&quot;HoliDate&quot;, &quot;tblHolidays&quot;, &quot;(Date Between &quot; & USAFormat(startdate) & &quot; And &quot; & USAFormat(EndDate) & &quot;) AND (DatePart('w', [Date])-1) Mod 6 <> 0&quot;) The code I'm using is...
  13. sirkenj

    Using date function result as criteria in a query?

    I designed this in the query grid inputting it exactly as you typed it above. When I change to SQL view, it automatically puts the other parenthesis in. If I take them away, I get the &quot;Missing ),], or Item in query expression...&quot;
  14. sirkenj

    Using date function result as criteria in a query?

    No, I thought of that earlier. The calculation is working, it's the criteria that's throwing it. My SQL: SELECT Taskings.*,DeltaDays(Date(),[SuspenseDate]) AS DaysOut FROM Taskings WHERE (((DeltaDays(Date(),[SuspenseDate]))<=3));
  15. sirkenj

    Using date function result as criteria in a query?

    That's exactly what I'm doing. The Field reads: DaysOut:DeltaDays(Now(),[SuspenseDate]) That part of it is working fine though. I put that in the query grid, and in datasheet view, the difference in days is calculated correctly. The problem arises when I try to place <=3 in the Criteria...
  16. sirkenj

    Using date function result as criteria in a query?

    The code works great, I can't use the results of the code (which are calculated in a query) to filter the records though. If I put a number in as criteria, I get a &quot;data type mismatch in criteria expression&quot; To my understanding (correct me if I'm wrong), the first line of the module...
  17. sirkenj

    Using date function result as criteria in a query?

    I'm having some problems with inputing criteria on a date calculation function. I have a query with the expression: DaysOut: DeltaDays(Now(),[SuspenseDate]) This displays the number of days between today and [SuspenseDate] excluding weekends, and holidays. The function works great, but I get...
  18. sirkenj

    2000 &amp; XP Compatibility Problem

    This sounds like a workgroup problem. If you are using Access security, you need to have all users join the same workgroup. As a point of fact that might help you, I just learned that Access XP stores the default workgroup file (system.mdw) in the docs\settings folder of each users profile...
  19. sirkenj

    Workgroup File in XP?????

    OK, I made myself look stupid. In case anyone else is wondering, Access XP integrates the workgroup manager directly into access. Tools\Security\Workgroup.... System.mdw in XP is in C:\Documents and Settings\your username\Application Data\Microsoft\Access This actually makes a WHOLE LOT of...
  20. sirkenj

    A Deleted Record Can't be Recovered?

    I have a similar situation, here is what I did: 1. Copy / Paste the table containing the records you are deleting. When you paste, select the option to only paste the structure, not the data. 2. Create an update query which will copy the record selected on your form from your main table...

Part and Inventory Search

Back
Top