我正在尝试使用此代码从表单的ExcUID文本框中选择逗号分隔的数字,然后将它们提供给tblExcIndivList表。
然而,我试图将ex:123,1213分割成行并将它们放在tblExcIndivList表的UID列的单独行中,但它在同一单元格中保存为1231213。
import java.lang.management.ManagementFactory;
public class GetSpecifications {
public static void main(String[] args){
long memorySize = ((com.sun.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean())
.getTotalPhysicalMemorySize(); //casting
System.out.println(memorySize);
}
}
请帮忙。
答案 0 :(得分:0)
您没有正确分割字符串,您说它是以逗号分隔的(即123,1213
)并尝试将其与vbNewLine
分开。您应该将逗号指定为分隔符:
var = Split(Forms.Agen_Report.ExcUID.Value, ",")
这将使您通过此错误并正确分割输入。但是,我无法确定您的查询是否格式正确。
答案 1 :(得分:0)
我认为你需要这样的东西。
.main {
position: fixed;
max-height: 85px;
z-index: 999;
width: 100%;
padding-top: 17px;
background: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
opacity: 0;
top: -100px;
padding-bottom: 6px;
overflow: hidden; /*remove from here*/
}
@media only screen and (max-width: 766px) {
.main {
padding-top: 25px;
overflow: hidden; /*add here*/
}
}