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 Chriss Miller 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: tomvdduin
  • Content: Threads
  • Order by date
  1. tomvdduin

    connection between front-ends

    Hi all! I want to make a versionmanager that will automatically copy the newest version of my frontend on the server to the workstation. I'm using the access security by using a custom .MDW file, with a disgranted admin group in it. In the frontend I have a local versiontable, in with I want...
  2. tomvdduin

    standard connection and ODBC

    Hi all! I want to develop an access front-end application based on a postgresql back-end. I've worked with access back-ends before, there I used the following commands to open a new connection: Dim cnn As New ADODB.Connection Set cnn = CurrentProject.Connection I know how I open an...
  3. tomvdduin

    add column to table

    Hi all! I want to add a column to a table and I wrote this piece of code to do that: Public Sub mc_add_column_table(in_tableName As String, in_columnName As String, in_columnType As Integer, Optional in_columnPrecision As Long) Dim cnn As New ADODB.Connection Dim cat As New...
  4. tomvdduin

    characterset converting

    Hi all! Our program based on a Oracle database makes an export of some data in de DB on a windows machine. One of our clients saves that file on a fileserver, opens it in a mac and reads it into Quark. Now all the characters with a ASCII value above 127 are changed, because the mac has a...
  5. tomvdduin

    reference variable on form

    Sorry, my english isn't good enough to say my problem in a few words. This is what I want to do: I want to make a generic 'class' all my forms are based on, so I can dynamically make a recordset for the form and lots of other things like creating dynamically searchstrings. Therefore I want to...
  6. tomvdduin

    Windows version 8.0 beta 3?

    Hi! Beta 3 is out for some weeks now; but when I try to download it from a mirror server, going into the map win32, I only see beta 1, beta 2 div 1, beta 2 div 2 and beta 2 div 3. Where can I download the beta 3 version? thanks for your answer! Tom van der duin
  7. tomvdduin

    performance question

    Hi! I recently put a lot of procesing out of the query for a form into functions in a module. Then I noticed a delay in showing the data onto the form. For example I have a combobox on a bounded form, witch contains names of people. The combobox first had a query on it getting the full names of...
  8. tomvdduin

    share calendar

    In outlook 2000 it is possible to share my calendar with other computers, we use this at work. Now I have a new notebook with office 2003, and when a invitation is send by a collegue, I can't accept it, because there isn't an accept-button in the e-mail. It states that I have to install...
  9. tomvdduin

    first two letters uppercase

    Standard in Access are strings of with the first two letters are capitals, converted to a string with the first letter capital. How can I tell Access not to reformat such strings. For example, I have a name: IJmker, where the I and J must be capitals. Access converts it to Ijmker, witch is...
  10. tomvdduin

    different color for even and odd rows

    Hi, Does someone know how to set a different color for each even and each odd row in VBA? there isn't someting like a rowcounter that I can use to see if it's an even or an odd row, right? thanks! Tom
  11. tomvdduin

    open page with POST values without using a form

    Hello everyone! Is it possible to open a page with javascript with a POST value? The problem is I can't use a form because nesting of forms is not allowed and the form must be inside another form. can you help me? Tom
  12. tomvdduin

    Internet Explorer and PDF in popup error

    Hi, I have a PHP script that generates a PDF file. The file is great; I can open it when it's saved. In Mozilla, when the pdf is generated, the popup is opened with the pdf. In opera, the pdf is opened with Adobe Acrobat reader. In Internet Explorer, however, I get the dialog looking like the...
  13. tomvdduin

    validate before submit problem

    This is surely the 100th problem with validate functions before a form is submitted, but the others doesn't help me: I have a form, witch, at the opening of the page, does have dynamically assigned the 'onblur' property using: function addEvents(formName, onWhat) { theForm =...
  14. tomvdduin

    change selected radiobutton

    I have the following part of a form: <input type="radio" name="ABO_FAKTURERING" value="0" checked>aparte factuur <input type="radio" name="ABO_FAKTURERING" value="1">verzamelfactuur 1 <input type="radio" name="ABO_FAKTURERING" value="2">verzamelfactuur 2 <input type="radio"...
  15. tomvdduin

    &lt;td onmouseover='..'&gt; alters multiple cells

    How can I alter multiple cells (ie, change the backgroundcolor) when a mousecursor flies over them? I have something like this: <tr> <td class="topleft" width="10">&nbsp;</td> <td class="topright" width="390">&nbsp;</td> </tr> <tr> <td class="left" width="10">&nbsp;</td> <td...
  16. tomvdduin

    css input box style

    Hi, I want to give the text boxes on my site the same look. When using the Input selector, all elements that are inputs, such as a button, has the same look. I tried the selector Input Text, although it doesn't exist, if it works, but no. Is it possible to give only the textboxes the same...
  17. tomvdduin

    onBlur on whole form?

    I want to check textfields inside a form when a user exits that field. I could do it with a onblur on the textfield, but I want all textfields in a form to be checked, so I thought that a onblur on the form element should do the trick, but that doesn't work. What kind of other options are there?
  18. tomvdduin

    data in empty textfield

    I want to test a textfield if it is not empty. i tried: !='' !=null != '0' !=0 but when a textfield is empty, all the above is false. How can I test a textfield if it is not empty?
  19. tomvdduin

    javascript functions and elements definition

    for php there is www.php.net/docs. but where can I find the documentation for javascript, so I can find the proper method of an element?
  20. tomvdduin

    textarea value from database

    Hi, I want to insert some data into an textarea element from a database. The only point is, that the data must me manipulated bt a javascript. I tried the following, but that doesn't work: (client-side code, the string 'name#^...' is generated by php) <TEXTAREA name="abonnee_etiket" rows="6"...

Part and Inventory Search

Back
Top