User Profile

Collapse

Profile Sidebar

Collapse
Trevor2007
Trevor2007
Last Activity: Sep 25 '08, 12:42 AM
Joined: Feb 17 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Trevor2007
    started a topic udev node not found

    udev node not found

    hi all,
    when i use udevinfo with -n " udevinfo -a -p $(udevinfo -q path -n /dev/input/event6)" i get back node name not found but i can cat the output of the node, i can also see the node. Am I missing an argument ? what am i missing?
    Purpose.... is to set up firefly mini remove see link:
    http://www.mythtv.org/wiki/index.php...m_firefly_mini

    Thanks, for helping....
    See more | Go to post

  • Trevor2007
    started a topic Hp4850 scanner

    Hp4850 scanner

    Hi,
    I have searched google for linux drivers for the hp4850 scanner. does anyone know if they exist, or has found them?
    Thanks
    See more | Go to post

  • Trevor2007
    started a topic List open files in a shared Directory

    List open files in a shared Directory

    I would like to list files in a shared directory that are currently open (beeing viewed by other users)
    thanks for helping
    the shared Dir is going to be pased as a variable.
    See more | Go to post

  • Trevor2007
    started a topic Update query not updateing Date

    Update query not updateing Date

    Update query should update the date field in a table but does not, I try printing off with debug.print and no results
    Code:
    DoCmd.RunSQL "UPDATE IndividualSettingsTbl SET IndividualSettingsTbl.Date = #" & stDate & "# " & _
    "Where IndividualSettingsTbl.UserName = 'ZMoor';"
    See more | Go to post

  • Trevor2007
    replied to Update Query not updating
    nothing came back with debug.print and It looked like every now and then fields in the table would update with boleon so I replaced And with ,
    and it works...
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Save a sum from a form to a table
    use an insert query for the place in the table(for the current record) that you want to put the value:
    Insert InTo [Table Name] (fieldname1,Fie ldName2, ..) & _
    " Values (formfieldname, formfieldname)"
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Delete Rows
    how about opening your table in design view and clicking on your ID field mnd in the lower left cornor change allow duplicates to "NO"

    or if you realy want to use vba what about looping though the table ID # field for duplicates
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Touchscreen using access
    Yes a touch screen should work that way where touch = click action
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Standard Form Color?
    I don't think RGB color values will work in access but here is the default form color access value -2147483633
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Only show Employees that are active?
    I agree with MisingLinq
    See more | Go to post

    Leave a comment:


  • Trevor2007
    started a topic Update Query not updating

    Update Query not updating

    my update query, when run says its going to update X # of rows but when I check the table after the update the values haven't changed, I have checked my varables that I passing to the query with msgbox [string var} to varvify that an actual # is being passed and that is correct. here is my query
    Code:
    DoCmd.RunSQL "UPDATE IndividualSettingsTbl SET " & _ 
    "IndividualSettingsTbl.LabelBKColor = '" & stLabelBoxBC
    ...
    See more | Go to post

  • Trevor2007
    started a topic windows account first and last name

    windows account first and last name

    I am trying to retrieve the windows account holders first and last name for the that is currently logged in, I would like to do it with WMI since object.get doesn't work very well with VBA.
    (Need to search local machine then AD(active directary))
    I can get the processor serial and cpu ID using vbs inside VBA. I hope this make since to you all.
    thanks for helping, Trevor2007
    See more | Go to post

  • Trevor2007
    replied to custom input mask msgs
    The input mask is for 1 field the current input mask is 999990 and msg formate should be 12345 or 123456.
    this is to be aplied to the field via dlookup and attaching it to a string , the table the value is looked up from is (will be) hidden .
    II hope this answers everyones questions
    I am using the input mask validation on active screen to produce custom messages..
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to custom input mask msgs
    ok, I see most of you say and in most situations I would agree about not allowing users to adjust an input mask, but here is my situation, and don't see much of anyother option other then to have predefind input masks. Anyway the reason behind input mask adjusting by the enduser( is actualy going to be the assingnd Db admin(I have the back end setup with datasheet(false tables) linked to the real tables so I can further controle what is done there....
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to Query Expression
    you could create a form with a date from and date to field, you could also code buttons for those boxes for current week, month, year, and even today then in your query criteria (assuming the form is form1 and the text boxes for the dates are datefrom and dateto;
    Code:
    >=[forms]![Form1]![DateFrom] And <=[forms]![Form1]![DateTo]
    this will allow you to pull dates by a specified date

    you will also need...
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to custom input mask msgs
    Thanks for the repy,
    but I am already using that code to produce custom input mask messages,
    here what I am trying to do, present the user with a form that will allow them to create/edit the input mask and then the error message would automticly modifiy itself to corispond wth the input mask (see OP for examples)
    Thanks
    See more | Go to post

    Leave a comment:


  • Trevor2007
    started a topic custom input mask msgs

    custom input mask msgs

    I would like to allow the user to enter an input mask for a field and have the appropriate error message display if the citeria isn't met.ie: input mask = 99AA99"A""B"
    the message box would then display "formate must be ' 12AB34AB"
    or if the input mask was 9A990"C" the message would be "formate must be '1A23C', or ' 1A234C'"
    Note: inputask 'A' is any letter Ucase, and...
    See more | Go to post

  • Trevor2007
    replied to color palette/color selector
    just to give you a heads up , I'm designing my own color palett ( I found almost 600 colors and there Ms access value. which will end up looking like 1600 colors to the end user since the rest of the color are about 1/2 shade off or less then the closet color in the 600 I have, so far I have 200 boxes placed and #'d on a form, no code behind them yet. I plan on doing a select case ( this is gonna suck)...
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to color palette/color selector
    Yes , I am aware that it will be a s#@t load of work for very little effect, my perpuse in this has 2 reason, 1 end user entertainment, the second one is a more usefull purpose, is for visualy impaired some see certin colors on a screen or in general better then others and perfer various combinations ie: green on black and other "strange" cominations,
    Is a a list of all 16,000 colors in one spot someware that you know of ...
    See more | Go to post

    Leave a comment:


  • Trevor2007
    replied to color palette/color selector
    Joes, your right that would be a great deal of coding for a very small effect, I've been looking around and I can't figurt out why both excel and word ailow access so a color pallet Diaog but not access, and is it possible to "barrow " the coilor pallet of one of the other programs
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...