Advertising
advertising
related pastes to tag 'input'
- 1916033 - ms excel: support for user input: user input date excel ms assistents
-
- If Target.Row > 4 Then
- With Target.Cells(1, 1)
- ' == ввод даты в некоторые столбцы ==
- If (.Column = 3 Or .Column = 7 Or Cells(4, .Column).Value = "дата") And VBA.CStr(.Value) <> "" Then
- i = VBA.Replace(VBA.CStr(.Value), ",", ".")
- i = VBA.Replace(i, " ", ".")
- i = VBA.Replace(i, "/", ".")
- i = VBA.Replace(i, "\", ".")
- 1014967 - Van is godly input blu-ray hd
- preview unavailable
- 1014966 - Van is godly input blu-ray hd
- preview unavailable
- 835986 - Pygtk entry validation: input pygtk entry validation
-
- import gobject
- def CharsOnly(entry, new_text, new_text_length, position):
- canAdd=''
- pos=entry.get_position()
- for newChar in new_text:
- if (newChar.isalpha() or newChar == '.' or newChar == '-' or newChar ==' '):
- canAdd+=newChar
- 764025 - oink: java input stream readthing
-
- import java.util.Scanner;
- import java.io.BufferedReader;
- import java.io.InputStreamReader;
- import java.io.IOException;
- class ReadThings {
- public static int getInt () {