Hello, I want to know how to handle an unexpected value in a
If I have a value like 4, I have a asked 07 Jan '13, 06:25 Alrik edited 07 Jan '13, 17:36 cmaynard ♦♦ (07 Jan '13, 08:06) Anders ♦ |
One Answer:
Note, in particular, that answered 07 Jan '13, 11:34 Guy Harris ♦♦ Thanks for your quick answers! I use the value_string with the val_to_str() function like this: val_to_str(my_param, my_value_string, "%s") (08 Jan '13, 00:17) Alrik 1
(08 Jan '13, 00:35) Guy Harris ♦♦ I tried with both %u and %d and it is still not working :( Anyway, i'll try another way to avoid this error. Edit: After another try, I changed the right %s in %d and then it works!!! TY!! (08 Jan '13, 01:01) Alrik If there's more than one % format item in the third argument to (08 Jan '13, 03:21) Guy Harris ♦♦ |