The run time version of Access 2007 can only run on XP SP2 or better. So your choices are limited on 2000. You can run a virtual machine with XP SP2 and work in there or upgrade your system. You can not downgrade your database. The run time version of 2007 can be found here: [...]
You can use the VBA command: Shell() to execute SysInternals <a href=”http://technet.microsoft.com/en-us/sysinternals/cc300361.aspx”>ShellRunAs</a> or <a href=”http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx”>PsExec</a> to execute command line instructions on local or foreign machines. However, that would require storing the elevated credentials somewhere Access can read them,.. there may be Security-safe ways to do that, but I’m not familiar with them. Alternatively, if you’re [...]
You may need to create a function of your own instead of using the DLookup. In the function, you could make a SQL query to find what you need. Depending on how your PK is setup, you might be able to do something like this: Function GetEndMeter(CurRowID as long) ‘Pass in the current record’s rowid [...]
On your listing form, have the button run the OpenForm method. In the detail form, have the Form_Open event either set the filter property or set the RecordSource property. Using the Filter property: Sub Form_open me.filter = “Component = ” & Forms![ListingForm]![Component] me.filteron = true End Sub With the filter, the user could remove the [...]
This could be done; but it would take some work. Because the Mon, Tue, Wed, etc. would not be bound to the table at all. You would need VBA code to insert into the table and also to read from the table to display on the form. Could you simply have them key the date [...]
It depends. Generally, you do not need a second, non-clustered index on the “first” column of a multi-column clustered index, unless that index is also being used to apply a “unique” constraint on that column. An index on the second column of a two-column clustered index may well make a big difference in performance in [...]
which language you are using? are you looking for concept or code
You can try contacting Tailored Solutions, Inc. They’re the company that develops Label Traxx. Their technical suppport email is techsupport@tailored.com.
I think this could do the trick: <pre>SELECT o.name, e.value FROM sys.objects o JOIN sys.extended_properties e ON o.object_id = e.major_id AND e.name = N’MS_Description’ WHERE e.minor_id = 0 AND o.name = ‘you_table’;</pre>
It should be something similar to this: <pre>SELECT tHP.resource_ID, DATEDIFF(“h”,tHP.fromTime, tHP.thruTime) * tU.cost FROM tblHourPeriod tHP JOIN tblUnit tU ON tHP.resource_ID = tU.resource_ID WHERE <conditions></pre>
I think the best way to do it in VBA is to use the RecordSetClone property. This way you can manipulate columns before you actually insert incase there would be issues with primary keys. The recordset clone returns all records that you currently see on the form. So this would account for filtering too. “TableName” [...]
Bananahead – I would begin each field’s select statment with “is not null” then as you have it. Naturally delete the final “else” Good luck! JuJu On second look, I think just deleting “else Null” will give you the results you want. The “else Null” is telling the program to enter the word “Null” when [...]
Hi, There is a way to do this, but it involves using the QSHELL environment and it’s not very easy to follow. If I need to do something like this I normally write a small RPG program that accepts the CL variable as a parameter and writes a record to the flat file. Regards, Martin [...]
Hi, Afraid I’ve never tried anything with certificates on the AS/400. Do you get any other messages in your joblog? The CPFB006 message text is pretty vague about what the cause could be. Could you post some of the code your using for the call to the api? Regards, Martin Gilbert.
How many rows are you manipulating. What is it doing? inserts,updates, deletes? If you are manipulating alot of records – constantly inserting, updating, deleting, the DB grows due to temp space being created to do these things. This is built into Access and it is why there is a Compact feature to get rid of [...]
Change your query so that instead of the IIF being in the criteria, put it in the select. And check the True/False field of the table. So you would have a column like this: ManHrstoReturn: IIf(Forms![FormName]![OptMHs]=3,3,IIf(TrueFalseField=True,1,2)) Then in the criteria, simply reference Forms![FormName]![OptMHs] So what this is doing, is if you want both by selecting [...]
The easiest will be to comment (not DD Dummy) the 5 files that you do not need. DD Dummy may bypass rest of files. Example: //SYS040 dd dsn=File4,disp=shr //* DD DSN=CA.AT880D //* DD DSN=CA.AT814D //* DD DSN=CA.AT814D.P090 etc Let us know if it worked. I am always interested to hear about IBM mainframe, COBOl, JCL, [...]
We all are on these type of exchange lists and it would be useful if the questions could ALL be listed at the top of the email. In this way I could glance quickly down the list and see if there are any questions I could answer or were interested in following. Ideally the list [...]
Can you post your query ? <b><i>I guess</i></b> you are comparing [Enter Date] to [StartDate] and not to DateAdd(“yyyy”,[Length],[StartDate]) —————————–
Hi, The MySQL Site provides the installation steps. But it looks like MySQL is supported on on i5/OS V5R4 or later releases. http://dev.mysql.com/doc/refman/5.1/en/installation-i5os.html http://devzone.zend.com/article/609-MySQL-on-i5OS-Example Currently there is a 30 day trial available and once trial period is over you will have buy the license. Hope this helps ///////////////////////////////////////////////// Hi, MySQL can be installed on V5R3 [...]





