+ Reply to Thread
Results 1 to 45 of 45

Help with VBA code spin buttons in my password record spreadsheet

  1. #1
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Help with VBA code spin buttons in my password record spreadsheet

    Hi, can anyone help please.

    I have created the attached spreadsheet, using several guides and examples on YouTube, to record all my password information and have a couple of problems with the VBA coding.

    All works OK for searching and updating but I have a problem with the spin buttons. They scroll through the data and populate the boxes OK but I would like the resultant searched for line in the list box and in Sheet1 to have a highlight bar across the selected text, would like the scroll to start at the resultant searched data line and would like the spin buttons to search in a rotational way i.e. when it gets to the last record to start again at the 1st if I am pressing down and visa versa if pressing up.

    I would also like the double click feature to select the resultant searched for line in the list box and highlight the same on the Sheet 1 data.

    I would appreciate any help with the code in SpinButton1 and ListBox1_DblClick subs as well as any other improvements anyone thinks would be useful.

    Thank you.
    David
    Attached Files Attached Files

  2. #2
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi, I've downloaded you file and will take look
    ---
    Hans
    "IT" Always crosses your path!
    May the (vba) code be with you... if it isn't; start debugging!
    If you like my answer, Click the * below to say thank-you

  3. #3
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you, that will be most helpful.
    David

  4. #4
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Your file is quite a mess as goes for VBA structure.
    You have used a listobject table that only has one row of data and the rest of the rows below do not belong to that list object, very messy.
    The Spin Button does what you want it to do.

    I suggest you read something about listobjects amd how to use them.
    I converted the A1-L57 to a table but your code does not work with tables
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thnk you very much, I will take a look at the revised sheet. I am new to VBA and am experimenting so the feedback is very useful.
    Regards
    David

  6. #6
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    This is a good place to take a look https://www.thespreadsheetguru.com/

    One of these here is especially for Tables and Listobjects
    https://www.thespreadsheetguru.com/b...0with%20Tables

    This will help you understand what I was talking about.
    Just holler if you need help

  7. #7
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    My comments would reflect those of @Kelbalah.
    I have attached a couple of links that prove useful when using tables - once you master them you will not go back to sheet/range referencing.
    For the time been I have left the table in place although just used range/sheet referencing until you familiarize yourself with tables
    I have tidied up some of the code mainly to introduce you to the method of looping to populate your textboxes.
    In development of larger apps this saves 'acres' of code and keyboard tapping.
    The spin buttons do as intended,the 'spinup/spindown' is not well documented on the 'web' I have also coupled them to your listbox cursor.
    Happy coding, any queries post back on this site.
    torachan.

    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you, I will take a look. Much appreciated advice.
    David

  9. #9
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Torachan

    Thank you so much for the modified file. I have a lot of learning to do. Probably need to go on a course.

    The form works much better with your changes but I would like to add a couple of things and wondered if you could help some more.

    Firstly the update does not seem to work in the revised version. If I change any of the data in the upper boxes, in my earlier version the record updated to the newer data when the update button and confirmation was pressed. Would this be possible in your version?

    I would also like the search to search on parts of the text in the Accounts column and populate the boxes as it finds the first few characters and then I would like to be able to use the spin buttons to scroll up and down from that entry. There are some entries that have common letters in the first few characters such as YouTube David and YouTube Karen. I could make each record unique but this would take much management as there are over 500 lines in the data.

    I would also like to start the userform with the first entry of my data already populating the boxes when the form is run and then be able to scroll down from there.

    If you have time and coud look at these final changes it would be very much appreciated.

    Thank You
    David

  10. #10
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    The update does work - select record in listbox - make your alteration - press 'UPDATE' - confirm (messagebox) - look at listbox - new data is there and in sheet.
    I have replaced your search textbox with a combobox as you type in the selection dropdown filters if the name is complete the data textboxes fill.
    At startup the initialise places the first record in the form, also as you do the combo search the spin button value carries on from that record in the listbox.
    Note: all variables are declared at the head of the code with 'Option Explicit' first, this makes the variables available over all Subs in the UserForm.
    torachan.
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Torachan
    You are an absolute champion. Well done, I am so impressed.

    Only one thing would make it complete now and that would be that the drop down list in the new Search combo box shows the sorted list with the words in apha /number order so for example if you enter a in the search box, the drop down shows a then abc etc rather than the list in its table order and you can then select the wanted entry especially if the drop down list had more entries too.

    Wonderful job.
    Thank so much for this, it just shows that I have so much to learn.
    Regards
    David

  12. #12
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    The alpha-numeric sort is done during the save routine.
    As the data is saved in a table I have used the sort method as appropriate.
    Hopefully everything updates dynamically.
    torachan.
    Attached Files Attached Files

  13. #13
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Nice one @torachan

  14. #14
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    @Keebellah, thank you for your compliment, hopefully @davidwh000 is now a convert to the dark side (VBA coding)
    torachan

  15. #15
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Wait 'til he gets the hang of it
    He'll be unstoppable

  16. #16
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Torachan

    Got into a bit of a pickle trying to debug my latest problem whilst testing the delete option in the code that you so kindly modified.

    If I search for an entry and then press the delete option it deletes all records with the same name from the data not just the currently selected entry line. It does not however delete newly added entries that have the same names. Going round in circles a bit and its a good job I backed up earlier versions as my fiddling has corrupted the operation of the delete option. All other features seem to be working very well.

    I would also like the data, when sorting, to sort on 2 different columns with the first sort criterion being column C and then on column A so that accounts are sorted alphabetically but in their category groups. My VBA book asssumes a level of intelligence greater than mine.

    Hopefully my last problems on this one. I still think a physical course might help me. Do you teach VBA?

    Regards

    David

  17. #17
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    VAB courses online exist and there are many, just google and you'll be overwhelmed.
    The best learning school is trial and error and starting from scratch with simple things like a recorded macro and then start editing.
    The advanced things like Torachan en many of us do comes with practice and time, loads of time, that is one of the most important ingredients aside inventivity and fantasy.
    You could almost say that VBA has no limits except that of the programmer

  18. #18
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    @davidwh000, @Keebellah sums it up very well, time,patience,practice,logic coupled with imagination -VBA is 'Pandora's Box' - everytime you open it there is something new.
    I did not want to change too much of you original coding - however the weakness of your search method not coping with duplicates has shown itself - I have now changed the delete/update search to the method I usually adopt - there is a direct link between the row in the listbox and the row in the sheet - eliminating any need to search for matching data fields - look in ListBox1_MouseUp event you will see a variable 'r' feed from the ListIndex - look at both the Delete & Update events that same 'r' associates itself with the row on the sheet - things to remember (listindex is zero based and need to compensate any row displacement on sheet).
    I will look at your sorting request later as it may need a rethink of present code.
    Attached also demo of what happens when bored - inspired by a game from a Christmas cracker.
    torachan.
    Attached Files Attached Files

  19. #19
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    If you start with card A and embedded 11 in your memory then the answer resulting is 12, incorrect

  20. #20
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    For the sorting part:

    Please Login or Register  to view this content.
    Will sort Category and then Account

  21. #21
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    @Keebellah, I have just tried cardA x 11 twenty times in succession each time answer was 11
    I will not sleep tonight until I too can crash it or find if my poor coding is carrying a spurious variable
    I think I may convert @davidwh000's app to totally table based as it is moving slowly that way with each modification.
    Thanks for code I will graft it in and post back.
    torachan.

  22. #22
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Another step forward.
    Attached Files Attached Files

  23. #23
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Maybe your code doesn’t like a Dutchman using it 😜

  24. #24
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Did a try again (mindpuzzel) and now it worked Don't know why it went wrong three times in a row.
    Will try again tomorrow

  25. #25
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    I hope your forgive my editing some of the vba code, it's based upon Tora(v5)
    Attached Files Attached Files

  26. #26
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you so much for all of the work you guys have done to help me with this. I have fiddled each time I have a new version and experimented with what I have seen and can say that I have learned a lot.
    Cheers for all you have done to make this project so educational to me whilst delivering a working solution to my data management.
    I wish you all the very best for Christmas and hope that 2021 brings you and yours a happier year and that we all come out of the 2020 nightmare showing the care and helfullness you two have shown me over the past week.
    Thank you.
    David

  27. #27
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,444

    Re: Help with VBA code spin buttons in my password record spreadsheet

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  28. #28
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Dave, glad to have been able to help.
    Best wishes to you too

  29. #29
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Guys

    Just a bit stuck again. I have tried to fix the problem but failed so am reverting to you for help.

    When pressing delete option for the first time the entry deleted is the first line in the data table rather than the one that has been entered into the boxes via the spin buttons or Search option. If I select the entry again the correct one is deleted so it seems the first press of delete after opening the workbook selects line one in the listbox.I am sure that the fix is probably quite simple but after a couple of late hours and several failed attempts I cannot fix it.

    I tried by attempting to make the line whose data is displayed in the boxes at the top of the creen to always follow in the data table shown in the listbox. The only tme this cannot be done of course is when the record has not yet been added to the list but the tracking should happen if the line is selceted using the spin buttons, directly clicking on the entry in the lisybox or using the search option.

    Help would be appreciated again please.

    Regards and thanks in advance
    David

  30. #30
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,444

    Re: Help with VBA code spin buttons in my password record spreadsheet

    You'll want to remove the solved tag if you want further help.

  31. #31
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi, I foresaw that already in the way the code was built,
    Working with tables needs a different approach
    I have some ideas I’ll workout and upload when completed
    The changes wil affect the whole approach but will make it workable (I hope)

  32. #32
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    A little more information.

    If I launch the project and search for an entry which I want to update or change or delete, even though the fill boxes show the correct line info and the right record is highlighted in the listbox, when I hit either delete or update the record in line 3 is either deleted or overwritten with the new data and not the selected line so it might have something to do with the initialisation bit but I cannot seem to track the exact problem. Unlike with Macros I cannot step through any processes to debug or am I missing a VBA procedure trick.
    David

  33. #33
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    F5 in the vba takes you line by line through the macro you want to run

  34. #34
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,313

    Re: Help with VBA code spin buttons in my password record spreadsheet

    my initial code used the listbox.listindex to i.d. the row to delete.
    with multiple search methods this method has become compromised.
    there is a variable 'r' generated when the selection is made from the listbox.
    now there is a need to link the three search methods to a common filter.
    the reason that the first delete on opening removes the first row is that you requested initial population on opening therefore the selection had already taken place.
    rather than cause confusion with differing approaches I will bow out at this stage.
    torachan.

  35. #35
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    I'm working on a variation with the same Userform, hope to get it done and will upload

  36. #36
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Torachan
    Thank you so much for all your help with this. I have learned much over the past 2 weeks though am far from profficient and it has allowed me to experiment and with the guidance from a couple of experts. Have a great Christms if you are able, and best wishes for the New Year.

  37. #37
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you Keeballah.
    I look forward to the variation and whatever features you add to it.

    I have been using the form and it is so close now, only a few small bugs but doing mostly the job I intended it to do.

    I have tried the tidied up version that you provided i the last update and though it runs OK it crashes Excel occassionally saying that there is a memory error.

    Thanks again.

    Regards
    David

  38. #38
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Here's my idea of how i would do it.
    The combobox has been replaced by a searchbox, just start typing and the listbox will filter as you type or select the item
    Needs finetuning and smore code but this is the idea.

    Have not added much information explaining my vba ideas, will do that and update again
    Attached Files Attached Files

  39. #39
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you Keebalah

    I look forward to the final fully working version with the expanation as I think if I can better understand al the processes in this one it will go a long way to help me adapt instructions for other experiments. I think that finding sensible projects whilst learning is definately the trick rather than just reading and fiddling with code.
    Have a good Christmas week.
    David

  40. #40
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    What you actually need, and I won't go into developing this (yet) is several additional functionality like:
    - email verification (check if the entered email address is in a valid format (there's code for that but needs to be implemented here)
    - when adding a record, check if it's not already present, that means check the account column and website if these are both not already present in the same record
    - check if all fields or the ones you want to contain data are actually filled
    - the print command could use some extra functionality

    So you see, programming and design has more to it than what you get a first sight, what happens in the background is just as important.
    The file I uploaded is not entirely bug-free but I prefer a search box where you can search as you type, in this case you can type anything and if the combination is in any of the 12 columns that row will be shown, so even if there's text in the notes
    Play around with it and see what you can do with it.
    Explanation of the code will follow

  41. #41
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi David,
    I made some modifications to the Userform that way I do these things.
    Programming si not a rule and many will do it other ways.
    I did try to place as many comments as I could in the VBA code with short explanations.
    Will keep you busy this Christmas
    I'm attaching the file and a separate zip file with the contents of VBA Project as textfiles

    Happy Holidays
    Attached Images Attached Images
    Attached Files Attached Files

  42. #42
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Thank you Keebelah

    Something to keep my mind working over the next few days as we cannot do much else this Christmas.
    Hope you keep safe and well and have a good time over the festive period.
    Regards and best wishes for 2021
    David

  43. #43
    Registered User
    Join Date
    10-30-2013
    Location
    Broxbourne
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Hi Keebalah
    The changes are pretty good and the check for all boxes being filled is a nice feature to have but not great for the data that I am populating as there are some instances where data is not required or available so the part data cannot be added as a new record. I have commented out the references to the feature and it no longer gives me the error message but also fails to add a new record or update one without the filled boxes. Is there anything else I need to change rather than just commenting out the feature?
    David

  44. #44
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906
    Hi Dave, commenting out the lines is not enough, there is a routine that checks the 12 text boxes, you will have to edit that code so that only those text boxes that you mark as required are completed before saving
    If you tell me which I’ll try and work it out before Xmas

  45. #45
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,906

    Re: Help with VBA code spin buttons in my password record spreadsheet

    Okay, I made a minor modification to make it work.
    If you look at the userform and check the 12 textboxes, I placed a tag value 1 in 4 that require to be checked.
    So all you need to do is if you want other text boxes to be filled place a 1 in the textbox's tag field.

    The only one that turns red if it's not empty but incorrect is the email address, or leave it empty or enter a valid email format
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Spin buttons
    By Jehannum in forum Excel General
    Replies: 3
    Last Post: 03-10-2017, 02:30 PM
  2. [SOLVED] Previous / Next Record Buttons Code Question
    By oskar44 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-26-2015, 08:15 AM
  3. Spin buttons
    By Mick Hassell in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-06-2015, 12:59 PM
  4. Macros with buttons, spin buttons, scroll buttons, etc.
    By qqbbppdd in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-12-2013, 09:34 AM
  5. Replies: 1
    Last Post: 11-16-2012, 09:25 AM
  6. Command Buttons for Viewing Record, Next Record and Previous Record
    By david1987 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-23-2012, 06:30 AM
  7. spin buttons
    By svay in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-01-2008, 01:48 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1