Search results

  1. Kryst51

    VASSAGO's Birthday

    Ha, HAPPY BIRTHDAY VASSAGO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! You're almost as old as me now ;)
  2. Kryst51

    Happy Birthday Brianwarnock!

    Oh, Happy Birthday!!!!!!! I too missed. it :( but hope you will forgive me. :)
  3. Kryst51

    Excel 2010 sets a row height to 409 automatically when a row is inserted

    Has anyone (in excel 2010) come across an issue that whenever a new row is inserted into a spreadsheet a row further down expands to a width of 409? This bugs the heck out of me, and I don't know why it does it. I googled it and I can't seem to find anything except how people want to set the...
  4. Kryst51

    Intext advertising

    Jon, Just my two cents..... Other then you seeing it, make the donations anonymous. No extra credit, no extra help. Gosh, given the experience and growth I've gained from this site over the past year, I would definitely donate when could. Especially if that means the information found here...
  5. Kryst51

    What are some games that you hate to love?

    Links in George1710's sig reported
  6. Kryst51

    Happy Birthday missinglinq!

    Happy Birthday!!!! I hope you have/have had a wonderful day. :D
  7. Kryst51

    What's wrong with this very simple code

    My guess is that you haven't dim'd AutoFail.
  8. Kryst51

    Wow...

    I just looked at the Oxford Dictionary online and it has it as one word and says underneath "also none the less" The only reason I asked is because I try to be correct, and I think I remember seeing it as one word in some books. Anyway, it's off topic but thanks about not being pedantic about...
  9. Kryst51

    Wow...

    I think it can, I have been a part of this forum for over a year now, and I have certainly come to see this site as a community of sorts. Not the kind where I would necessarily tell you all my personal life as I would a group of friends, but certainly a community of people I respect and admire...
  10. Kryst51

    Lock Fields till a Edit button is pressed

    Hey Linq, thanks for the corrections, I was trying to remember on the fly how to do it. :)
  11. Kryst51

    Many fields

    Here's one more link And your welcome, I'm sorry that you didn't get the answer you are looking for, but you will be better off taking care of the problem now, especially when you go to build reports.
  12. Kryst51

    Many fields

    That certainly indicates an unnormalized db. Read up on normalization. Here are some links: http://databases.about.com/od/specificproducts/a/normalization.htm http://bytes.com/topic/access/insights/585228-database-normalization-table-structures http://www.allenbrowne.com/casu-22.html...
  13. Kryst51

    Many fields

    How many fields are in your table? 58? If so this may suggest normalization issues.
  14. Kryst51

    Lock Fields till a Edit button is pressed

    Set form properties Add, Edit, Deletions, data entry all to no, Then in vba behind the button change them to yes (Click event) Then on the form close event change them back to no. Ex: Me.Forms.AllowEditions = True Me.Forms.AllowDeletions = True 'etc....
  15. Kryst51

    Many fields

    Please give us more details, what exactly do you need help with?
  16. Kryst51

    Form moves off the screen when I switch to design view

    Hey Bob, that didn't work, the only thing that seemed to work, after several times of doing it, is shutting the db down and restarting. Most annoying but it seems to be working now. :) It's just one of those things I guess. :confused: Thanks for your response, at least I know I am not going...
  17. Kryst51

    Form moves off the screen when I switch to design view

    Hey all, I have a wierd thing going on, when I swith my form into design view it moves off the screen, I have to scroll all the way to the right and down to see it and drag it back into its proper position, has anyone ever had this happen to them? And if so, what was your solution or cause of...
  18. Kryst51

    Lookup Column not extracting complete data

    You should not use lookups at the table level, see my signature for an article that explains why. You should have an FK reference to the ID of the other field, then use a combo box to do the lookup at form level or a query which has both tables in it. Edit: @ Bob, :p
  19. Kryst51

    Disable text box after initial entry...

    How about a select case type deal along with other code or a function that finds either all text boxes, or you can tag your controls and find all the controls with a certain tag label (You can google how to do this): Dim DeviceType As String 'You may not need to doe this this way 'You might...
  20. Kryst51

    IF statement help

    Your Welcome. :)
Back
Top Bottom