Recent content by Subcancel

  1. S

    Multifunction Server box - Partitioning

    That is a lot of partitions! As far as servers disk setup there are a ton of different ways. This also depend on how important your data is. I say look into RAIDS, but you can't do a raid. I say set folders and not partition based on your saved/served data but more one the lines of system...
  2. S

    sql query help

    select Producer, weight,pickup,pickupdate, scc, (Avg(scc)/Count(pickups)) As Avg from table1 where pickupdate between 4-1-10 and 4-23-10 Try this..
  3. S

    about opening an excel file and printing active sheet

    DoCmd.SetWarnings False should do the trick.. just up at the top of your function or sub
  4. S

    Alter Table Command

    trying closing the db after the alter. db.close
  5. S

    Browse for Folder - absolute path

    The only way I can see is to take the path that it is saving (shared path) and rework it to input the server path (\\server\whatever). While having a condition there to check if it is the mapper drive on your computer (ex S:\). If X Then wPos = InStr(szPath, Chr(0))...
  6. S

    Browse for Folder - absolute path

    Could you post your code for it?
  7. S

    [access 2007] event doesn't happen

    Woot!.. Glad I could help
  8. S

    [access 2007] event doesn't happen

    Yes.. I tested it on my pc and I was able to get the form to maximize. After i set my "Pop up" to yes.
  9. S

    HTML- Email code tweak

    Well really don't know on that.. but only one way to find out..hehe. I can see a problem with quotes.. so might have to switch to single quotes around to 'font-size:40px'
  10. S

    [access 2007] event doesn't happen

    In design view.. you should be able to bring up your Propety Sheet (F4) and go to the "other" tab. The first property at the top has a field call "Pop Up" and you can choose 'yes' or 'no'.
  11. S

    [access 2007] event doesn't happen

    http://www.access-programmers.co.uk/forums/showthread.php?t=113078 Post #2 and #4 has a good explanation of the on open and on load. This should help on what you want to do.
  12. S

    iPad sucks for PC users

    Steven Jobs don't like Flash so it will prolly never get flash support. going to have to wait for html 5 for that.
  13. S

    Sub and GoTo Err Names Duplicity

    ^ Agree with above
  14. S

    [access 2007] event doesn't happen

    I just looked at your DB and your code behind (VBA).It looks like your DoCmd.Maximize is a Sub Click() event on one of your text boxes. Try adding this if you have not already. Also try setting you Pop Up to "yes". Private Sub Form_Load() DoCmd.Maximize End Sub
Top Bottom