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 SkipVought 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: FurryGorilla
  • Order by date
  1. FurryGorilla

    Naming multiple select boxes through loop

    Yep, don't worry. I've been validating my xhtml as I go along so no uppercase tags or short selects.
  2. FurryGorilla

    Naming multiple select boxes through loop

    Thanks for both of those replies. I've decided to go with the item[$i] method of naming and that seems to work fine. Thanks for the pointer regarding accessing the elements via javascript. Although I probably won't be using any client-side scripting it's always good to know :-) Thanks once...
  3. FurryGorilla

    Naming multiple select boxes through loop

    Hi I've set up a table on a page which has product information for each row in the table. Each table row has a select box which is named using <select name=\"item_no_$i\"/> where $i is a number that is incremented on each loop. This then generates a series of select boxes named item_no_0...
  4. FurryGorilla

    Linked table workgroup information file

    Thanks Jeremy I've had time to read through the FAQ you pointed me to and I understand a lot more about it now. I have no idea what was causing the problem but after a great deal of messing about I finally managed to get it to work (which is annoying!). Thanks again for the prompt reply. Chris
  5. FurryGorilla

    Linked table workgroup information file

    I have a front end to an Access 2002 database which contains forms, reports, queries and linked tables to a second database. I've created a workgroup information file using the security wizard for the first database so only specific users can modify the database objects. Every user can add...
  6. FurryGorilla

    Resize one-dimensional array

    Sorry I've taken so long to get back in contact. Had a bit of a problem with net access. The way I did it in the end was using: buffer1 = (float *)calloc(size, sizeof(float)); buffer2 = (float *)calloc(size, sizeof(float)); Thank you for all the followups. Much appreciated Chris
  7. FurryGorilla

    Resize one-dimensional array

    Hi I'm having a little trouble finding any information on exactly how to do this. I merely need to resize a one dimensional array depending on another number. I have 2 arrays of floating point numbers named 'buffer1' and 'buffer2' and these are to be resized using the integer 'size'...
  8. FurryGorilla

    text editing in email links

    Hi Potski I've tried it again and it works for me. I've tested it in both IE and Outlook but only have v6 on my computer. I've uploaded a page to a website to show you at: http://www.chrisohara.co.uk/test.html HTH Chris
  9. FurryGorilla

    text editing in email links

    Hopefully this will display: mailto:name@company.com?CC=name2@company2.com&Subject=Feedback&Body=I%20would%20like%20to%20give%20feedback%20on%20the%20following%20subjects%3A%0D%0A%0D%0ACONTENT%0D%0ADESIGN%0D%0AUNCTIONALITY%20 If not, you can go here and it generates it for you...
  10. FurryGorilla

    On current event when deleting

    Sorry, I don't understand what you're getting at. I need the code in the 'on current' event so as the user moves through the records they are sent a message depending on the status of record. If it is taken out of the 'on current' event it won't be displayed at all. Unless I can place the 'on...
  11. FurryGorilla

    On current event when deleting

    Hi I have some code in the 'on current' event of a form which displays a message box depending on the status of a field on the form. When I delete a record, I ask the user if they would like to delete this record. if they confirm this, two commands are called: DoCmd.DoMenuItem acFormBar...
  12. FurryGorilla

    Subform control source error

    Thanks ssecca. I managed to get it working using: =IIf(IsError(frmPurchaseOrderTotals.Form!txtTotalNet),0,frmPurchaseOrderTotals.Form!txtTotalNet) I thought I'd tried it this way already but I mustn't have typed it in correctly. Thanks for the reply Chris
  13. FurryGorilla

    Subform control source error

    Hi I have a main form with a subform containing a sum of values on an order. The subform has a textbox named txtTotalNet which has it's control source set to '=Sum([Net])'. Because the records are displayed in datasheet view, I have a textbox on the main form with a control source of...
  14. FurryGorilla

    Can I move from IE6.0 back to 5.5?

    I'm not sure how helpful this is but there's an MS KB article that describes how to do this: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q293907& As for the icons, they're stored under 'Temporary Internet Files' and have the filename favicon.ico - more info at...
  15. FurryGorilla

    Validate number as integer

    Cheers Tom. That's exactly what I need. Thanks. ____________________________ Have you seen my munkee? [monkey]
  16. FurryGorilla

    Validate number as integer

    Hi all I've got a little problem on a datasheet which involves putting the length or quantity (depending on the category) into a textbox on form in datasheet view. I was going to use an if statement and then use the mod function but found any value mod 1 returns 0 even if it's a decimal value...
  17. FurryGorilla

    Moving through datasheet subform

    Ta Jeff although after much annoyance I found it was down to missing out a set of speech marks. :-( ____________________________ Have you seen my munkee? [monkey]
  18. FurryGorilla

    Moving through datasheet subform

    Hi Just having a little problem with moving through records in a subform in datasheet view. I have an order form which scrolls through individual orders. When you scroll through each of the orders the items on each order are displayed in the frmOrderItems which is a subform of frmOrders When...
  19. FurryGorilla

    Moving through datasheet subfrom

    Hi Just having a little problem with moving through records in a subform in datasheet view. I have an order form which scrolls through individual orders. When you scroll through each of the orders the items on each order are displayed in the frmOrderItems which is a subform of frmOrders When...
  20. FurryGorilla

    Delete item in orders but update in stock table

    No probs, done it now. Just popped the code in the After Delete Confirm section of the subform and everyhings fine. Thanks for the help dz. ____________________________ Have you seen my munkee? [monkey]

Part and Inventory Search

Back
Top