Search results

  1. E

    Sending data by UDP

    I have searched high and low for sending a simple UDP command. It looks like it might have been possible with older versions of access but the newer version maybe not. Does anyone have any info on sending a simple UDP command via VBA. I just want to take a number from a query and broadcast it...
  2. E

    IIF check box Then use value from Combo box

    Never mind you were right now it is working. thank you very much
  3. E

    IIF check box Then use value from Combo box

    Where ((dbo_BB_REVENUE.DaysOnLine)<IIf(([forms]![Report Form]![Check209]=-1),[forms]![Report Form]![Combo201],999999)) my Where state is very large but I took everything else out just to show you this part but I changed it around like this. and it still doesn't work. I guess I am not getting...
  4. E

    IIF check box Then use value from Combo box

    OK I finished out the IIF statement and it still doesn't work. IIf(([forms]![Report Form]![Check209]=-1),<[forms]![Report Form]![Combo201],<999999) IIf(([forms]![Report Form]![Check209]=-1) Returns if check-box is checked or not in a form <[forms]![Report Form]![Combo201] this pulls a number...
  5. E

    IIF check box Then use value from Combo box

    I am trying to filter a query where if a check box is true then it will us this code. I haven't put in the false part yet because I can't get the true part to work. I have put the true part in the true and false part of the IIF statement and it still doesn't but if I take out the IIF statement...
  6. E

    Query filter from combo box also has IIF statement

    while I was waiting I was still trying things and this is what I came up with that worked in the combo box all = * then i put Like [forms]![report form]![combo58] that way it would just return the wildcard and select them both.
  7. E

    Query filter from combo box also has IIF statement

    Here is what I have in my Query IIf([Forms]![Report Form]![Combo56]=0,1 or 3,[Forms]![Report Form]![Combo56]) in the combo box I have it setup like this Yes = 1 No = 3 All = 0 it is pulling for a SQL database and what I am looking to do is if they want them all select 1 and 3 but when I save...
  8. E

    Sending UDP commands

    I am looking for code to send UDP commands in VBA. I need to send "Promo" Binary 0) 0 1 0 1 0 0 0 0 1) 0 1 1 1 0 0 1 0 2) 0 1 1 0 1 1 1 1 3) 0 1 1 0 1 1 0 1 4) 0 1 1 0 1 1 1 1 I would like to see code let lets me use the "Promo" instead of the binary string if it is possible. I have a...
  9. E

    Monitor Database and send UDP command

    it is a SQL database. I am not able to work directly in the SQL server due to some regulations and other stuff. that is why I am using Access. they seem to be fine with this type of connection as I am very careful to only read data from the tables and I always test my stuff to a backup database...
  10. E

    Monitor Database and send UDP command

    OK this is what I am trying to do. I have some digital signs that play different videos. these controllers can listen for UDP command Via Ethernet. what I would like to do is use access to start at a certain time. (I know how to do this) and connect to a SQL when the database is updated with...
  11. E

    Date 1 week apart

    Got it Thanks so Much works great.
  12. E

    Date 1 week apart

    I am looking to build a report that pulls data from one table but I need to compare data that is I week apart. the tables logs this data every 15 mins in to 10 seperate groups. I need to match the time but be 1 week off. so if I am pulling field 1 I need to pull this field twice once at...
  13. E

    excel 2010 routing slip VBA

    OK I have tried the code out of the VBA help screen and I keep getting this Error "Run-time error '1004': Method 'HasRoutingSlip' of object'_workbook' failed this is the code I am using from a button Sub Route() Workbooks("BOOK1.XLS").HasRoutingSlip = True With...
  14. E

    signature field

    We use integrisign I saw an activex control for it. I am a little rusty on Activex controls. I wonder if I can look at the sample Database an convert it over to work with our pads.
  15. E

    signature field

    I need to capture a signature field from a digital signature pad. we use them all the time for Excel docs. has anyone used something like this before in access.
  16. E

    ontime function

    would this also fix the 24 hr limit I have run into.
  17. E

    ontime function stops after 24hrs

    Here is my ontime code that is in the workbook open Application.OnTime TimeValue("03:00:00"), "Macro03" Application.OnTime TimeValue("03:03:00"), "Macro04gamecount" Application.OnTime TimeValue("03:15:00"), "Macro04" Application.OnTime TimeValue("03:30:00"), "Macro04"...
  18. E

    ontime function

    I have this code running and when 24 hours is up will it start over because it didn't seem like it did. just thought I would ask if anyone knows.
  19. E

    copy first cell that doesn't have a zero in it

    when i step through it it looks like to goes to foundit right away now it is returning a 28 but still no 28s in the range.
  20. E

    copy first cell that doesn't have a zero in it

    This is what I got and it returns a "5" in the cell but there are no 5's to return in this range Dim LastMeter As Integer For LastMeter = Sheets("summary").Range("AB1008").End(xlToLeft).Column To 5 Step -1 If Cells(LastMeter, 1) <> 0 Then GoTo foundit End If Next LastMeter foundit...
Back
Top Bottom