简体   繁体   中英

what means '-' in microsoft dynamics nav 2009

I am using microsoft dynamics navision 2009 and I see sometimes this sign: '-'

what means '-' in microsoft dynamics navision 2009?

For example this:

 IF FORMAT("Outbound Whse. Handling Time") <> '' THEN BEGIN
    LocTxtHandlTime := '-' + FORMAT("Outbound Whse. Handling Time");
  END ELSE BEGIN
    LocTxtHandlTime := '';
  END;

Thank you

The magic sign '-' is a string - in quotes. For example '' is an empty string and 'Apple' is a string Apple . In programming the quotes are necessary. Read some intro book.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM