R Robejon Пользователь Регистрация 11.11.2017 Сообщения 40 Благодарностей 4 Баллы 8 06.12.2017 #1 HI, I need to get the current Day name? Example "Friday" Also what is the syntax to get date in this format ? 22.12.2017 Thanks
HI, I need to get the current Day name? Example "Friday" Also what is the syntax to get date in this format ? 22.12.2017 Thanks
Dimionix Moderator Регистрация 09.04.2011 Сообщения 3 068 Благодарностей 3 122 Баллы 113 06.12.2017 #2 Robejon сказал(а): I need to get the current Day name? Example "Friday" Нажмите, чтобы раскрыть... {-TimeNow.DayOfWeek-} Also what is the syntax to get date in this format ? 22.12.2017 Нажмите, чтобы раскрыть... {-TimeNow.Datedd.MM.yyyy-}
Robejon сказал(а): I need to get the current Day name? Example "Friday" Нажмите, чтобы раскрыть... {-TimeNow.DayOfWeek-} Also what is the syntax to get date in this format ? 22.12.2017 Нажмите, чтобы раскрыть... {-TimeNow.Datedd.MM.yyyy-}
R Robejon Пользователь Регистрация 11.11.2017 Сообщения 40 Благодарностей 4 Баллы 8 06.12.2017 #3 I added {-TimeNow.DayOfWeek-} In C# code. But returned Project failed.
Dimionix Moderator Регистрация 09.04.2011 Сообщения 3 068 Благодарностей 3 122 Баллы 113 06.12.2017 #4 Action Text processing > To variable In C# code Нажмите, чтобы раскрыть... C#: return DateTime.Now.DayOfWeek; C#: return DateTime.Now.ToString("dd.MM.yyyy");
Action Text processing > To variable In C# code Нажмите, чтобы раскрыть... C#: return DateTime.Now.DayOfWeek; C#: return DateTime.Now.ToString("dd.MM.yyyy");
R Robejon Пользователь Регистрация 11.11.2017 Сообщения 40 Благодарностей 4 Баллы 8 06.12.2017 #5 Thanks Works fine.. For any newbies out there... Just take a New variable and inside it paste {-TimeNow.Datedd.MM.yyyy-} Save that to a variable and .. there you have it... Реакции: mta
Thanks Works fine.. For any newbies out there... Just take a New variable and inside it paste {-TimeNow.Datedd.MM.yyyy-} Save that to a variable and .. there you have it...
R Robejon Пользователь Регистрация 11.11.2017 Сообщения 40 Благодарностей 4 Баллы 8 13.12.2017 #6 But I need help in converting the current date in the below format: Wednesday 13th December 2017
R Robejon Пользователь Регистрация 11.11.2017 Сообщения 40 Благодарностей 4 Баллы 8 14.12.2017 #7 Robejon сказал(а): But I need help in converting the current date in the below format: Wednesday 13th December 2017 Нажмите, чтобы раскрыть... Any help ? Реакции: Radzhab
Robejon сказал(а): But I need help in converting the current date in the below format: Wednesday 13th December 2017 Нажмите, чтобы раскрыть... Any help ?
Radzhab Client Регистрация 23.05.2014 Сообщения 1 500 Благодарностей 1 268 Баллы 113 14.12.2017 #8 I can helo you. Write to skype ahvahsky2008
Radzhab Client Регистрация 23.05.2014 Сообщения 1 500 Благодарностей 1 268 Баллы 113 14.12.2017 #9 C#: DateTime now = DateTime.Now; var rez = now.ToString("dddd d MMMM yyyy"); return rez;