小编Luu*_*lag的帖子

如何从命令行启动Excel宏(没有Worksheet_Open事件)?

是否可以从命令行启动Excel宏?

我不想使用该Worksheet_Open事件,只需打开Excel文件.

我需要启动Excel WorkBook中存在的特定宏.

excel vba cmd

7
推荐指数
2
解决办法
4万
查看次数

Android:以编程方式设置权重参数与我想要的相反

我遇到了android的问题.我在Java中设置了Weight参数,但它正在完成我想要的对话.

这是代码

LinearLayout container = new LinearLayout(context);
// some code ...
container.setWeightSum(1f);

View v1 = new View(context);
v1.setBackgroundColor(Color.parseColor("#ff0000"));
LinearLayout.LayoutParams p1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
p1.weight=0.1f;

View v2 = new View(context);
v2.setBackgroundColor(Color.parseColor("#000000"));
LinearLayout.LayoutParams p2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
p2.weight=0.9f;

container.addView(v1,p1);
container.addView(v2,p2);
Run Code Online (Sandbox Code Playgroud)

我在容器布局之间添加了一条黑线,重复了这个过程7次.通常情况下,我应该在lef上获得一个小的红色列,以及一个大的黑色列,但这是我得到的代码:

http://i.stack.imgur.com/PPgoy.png

为什么它与代码完全相反?

谢谢你的帮助.

java android android-layout android-layout-weight

7
推荐指数
1
解决办法
9076
查看次数

线性布局中的嵌套重量

我收到警告说:"Nested weights are bad for performance".我确实从另一个布局复制了这个代码,但是在这一个中它给出了一个错误而在另一个布局中却没有.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listWeighings_weighing"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginBottom="5dp"
        android:layout_weight="1"
        android:background="#000000" >
    </ListView>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btnInsertMutation_weighing"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="50"
            android:text="Mutatie invoeren" />

        <Button
            android:id="@+id/btnExecuteWeighing_weighing"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="50"
            android:text="weging uitvoeren" />
    </LinearLayout>

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

我打赌这是一个愚蠢的错误,但有人可以指出我做错了什么?

android android-linearlayout

6
推荐指数
2
解决办法
7376
查看次数

Android如何设置RemoteView的权限?

我需要知道允许我设置RemoteView权重的代码.

我尝试使用此代码,但这不起作用:

RemoteViews remoteViews = new RemoteViews(c.getPackageName(), R.layout.notification);
remoteViews.setInt(R.id.ll_notification, "setWeight", 12);
Run Code Online (Sandbox Code Playgroud)

有办法做到这一点?非常感谢....

android remoteview android-layout-weight

6
推荐指数
1
解决办法
694
查看次数

Javascript .Replace 替代方案

我正在为 eBay 编写模板。但是,eBay 不允许 .replace。下面的代码用于滚动选项卡部分。当用户将鼠标悬停在选项卡 (a) 上时,相应的 div div(a) 将变为可见。

是否有一种解决方法可以让代码在不使用 .replace 的情况下工作?

var divs = new Array();
divs.push("contentPayment");
divs.push("contentShipping");
divs.push("contentWarranty");
divs.push("contentContact");
var navs = new Array();
navs.push("nav1");
navs.push("nav2");
navs.push("nav3");
navs.push("nav4");
///////////////////////////////////////


function hasClass(element, cls) {
    return (' ' + element.className + ' ').indexOf(' ' + cls + ' ') > -1;
}
///////////////////////////////////////////////////////////////////////


function toggleDisplay(id) {
    for (var i = 0; i < divs.length; i++) {
        var item = document.getElementById(divs[i]);
        item.style.display = 'none';
    }
    var target = document.getElementById(id);
    target.style.display …
Run Code Online (Sandbox Code Playgroud)

javascript css

6
推荐指数
1
解决办法
7068
查看次数

excel vba打开对话框导入csv

我在下面有一个由宏录制器生成的vba代码.它使用一些特定的列设置将csv文件导入当前的Excel工作表.现在,csv文件的路径硬编码为"C:\ Users\myuser\Desktop\logexportdata.csv".如何更改此设置以便有一个对话框提示,要求用户找到要导入的.csv文件?

Sub Import_log()

With ActiveSheet.QueryTables.Add(Connection:= _
    "TEXT;C:\Users\myuser\Desktop\logexportdata.csv", Destination:=Range( _
    "$A$2"))
    .Name = "logexportdata"
    .FieldNames = True
    .RowNumbers = False
    .FillAdjacentFormulas = False
    .PreserveFormatting = True
    .RefreshOnFileOpen = False
    .RefreshStyle = xlInsertDeleteCells
    .SavePassword = False
    .SaveData = True
    .AdjustColumnWidth = True
    .RefreshPeriod = 0
    .TextFilePromptOnRefresh = False
    .TextFilePlatform = 437
    .TextFileStartRow = 2
    .TextFileParseType = xlDelimited
    .TextFileTextQualifier = xlTextQualifierDoubleQuote
    .TextFileConsecutiveDelimiter = False
    .TextFileTabDelimiter = False
    .TextFileSemicolonDelimiter = False
    .TextFileCommaDelimiter = True
    .TextFileSpaceDelimiter = False
    .TextFileColumnDataTypes = Array(5, 2, 2, 2, …
Run Code Online (Sandbox Code Playgroud)

csv excel vba dialog excel-vba

6
推荐指数
1
解决办法
1万
查看次数

在python中确定线性方程组的求解

考虑以下问题:

查找:x_1,x_2,x_3> 0,使得67.5 = 60*x_1 + 90*x_2 + 120*x_3和60 = 30*x_1 + 120*x_2 + 90*x_3

有没有办法在Python中解决这个等式?(类似的问题已经被要求用于MATLAB)

任何人都可以举例说明如何在python中使用scipy.nnls()来获得任何未确定的方程组

python linear-algebra

6
推荐指数
1
解决办法
3669
查看次数

如何在VBA中结束do while循环

我想知道我的编码有什么问题,因为我无法在Microsoft Excel VBA中结束我的循环.如果下一行为空,我希望结束这个while while循环.

Do While Cells(RowName, 1) <> ""
    Name = Cells(RowName, ColumnName)
    MsgBox Name
    RowName = RowName + 1
Loop
Run Code Online (Sandbox Code Playgroud)

因为我还是初学者,请赐教.MsgBox一直弹出,即使它是空白也不会结束.

excel vba loops

6
推荐指数
1
解决办法
4029
查看次数

如何在逗号之间拆分字符串并使用vba将每个字符串存储在数组变量中

我有一个问题: 如何在开放和闭括号内的逗号之间拆分字符串并将每个字符串存储在数组变量中?

例:

strinput = "( u1 u1t_a, u2 u2t_b, s2 s2t_c, s4 s4t_d, ...n )"
Run Code Online (Sandbox Code Playgroud)

上面有一个输入字符串,我想在一个数组变量中存储三个,所以在逗号之间的子字符串,这些逗号位于开括号和闭括号内:

substr(0) = "u1 u1t_a"
substr(1) = "u2 u2t_b"
substr(2) = "s2 s2t_c"
substr(n) = "...n"
Run Code Online (Sandbox Code Playgroud)

到目前为止,我很难在VBA中使用循环和数组,所以我的代码就像一个暴力,它只能处理最多3个文本,因为代码会变长,所以我做了一个限制.

在这里查看我的代码:

strinput = "( u1 u1t_a, u2 u2t_b, s2 s2t_c )"

substr1 = Right(strinput, Len(strinput) - Find("(", strinput))
    'Output: u1 u1t_a, u2 u2t_b, s2 s2t_c )
substr1f = Left(substr1, Find(",", substr1) - 1)
    'Output: u1 u1t_a

substr2 = Right(substr1, Len(substr1) - Find("(", substr1))
    'Output: u2 u2t_b, s2 …
Run Code Online (Sandbox Code Playgroud)

arrays string excel vba excel-vba

6
推荐指数
1
解决办法
260
查看次数

使用超链接在复选框hack中切换复选框的状态

我和我的同事在一个包含“常见问题”页面的网站上工作。每个问题之后,都有一个“ Answer”(Antwoord)扰流器按钮。单击按钮将在当前问题下方和下一个问题上方显示答案。再次单击按钮将隐藏答案。这样可以轻松滚动浏览所有问题列表,找到您可能感兴趣的问题。

现在我面临的问题是我想从问题1的答案链接到例如问题5的答案。

我可以给<div>包含问题5的id=属性提供一个链接到该属性的属性,但理想情况下,我想通过使超链接“单击”“答案”按钮来立即显示答案。

事实证明,为了使其能够正常工作,我将需要修改复选框hack,但是我面临一个问题,即我无法在一条文本上同时拥有超链接和标签。

明确一点:我正在寻找使用HTML / CSS 的解决方案。


我的原始代码只有一个扰流按钮

.spoilerbutton {
  display: block;
  border: none;
  padding: 0px 0px;
  margin: 10px 0px;
  font-size: 150%;
  font-weight: bold;
  color: #000000;
  background-color: transparent;
  outline: 0;
}

.spoiler {
  overflow: hidden;
}

.spoiler>div {
  -webkit-transition: all 0s ease;
  -moz-transition: margin 0s ease;
  -o-transition: all 0s ease;
  transition: margin 0s ease;
}

.spoilerbutton[value="Antwoord"]+.spoiler>div {
  margin-top: -500%;
}

.spoilerbutton[value="Hide Antwoord"]+.spoiler {
  padding: 5px;
}
Run Code Online (Sandbox Code Playgroud)
<strong>1. Question 1?</strong> <input class="spoilerbutton" …
Run Code Online (Sandbox Code Playgroud)

html css button hyperlink show-hide

6
推荐指数
2
解决办法
261
查看次数