小编spl*_*tne的帖子

如何确定何时复制完成VBScript?

有谁知道确定文件副本何时在VBScript中完成的方法?我正在使用以下内容进行复制:

set sa = CreateObject("Shell.Application")  
set zip = sa.NameSpace(saveFile)  
set Fol = sa.NameSpace(folderToZip)  
zip.copyHere (Fol.items)
Run Code Online (Sandbox Code Playgroud)

filesystems vbscript copy

4
推荐指数
1
解决办法
5063
查看次数

ASP.NET:必须填写"两个字段之一"的自定义客户端验证程序?

您是否可以告诉我是否有人已经实现了自定义验证器来检查两个(或N个)输入字段中的一个是否已填满?

   "Insert phone number or email address"
Run Code Online (Sandbox Code Playgroud)

我正在使用ASP.NET(Ajax)3.5,ajaxToolkit:ValidatorCalloutExtender(如果有必要,还有jQuery).

asp.net validation

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

部署项目dll导致'类型x存在于两个'错误中

我有一个WebApplication项目,一个业务逻辑项目和一个Web应用程序的WebDeployment项目.

当我构建解决方案时,部署"Release"bin包含每个项目的1个dll - 所以我得到一个用于MyWeb.dll,MyWebBusiness.dll和MyWebDeploy.dll.

当我尝试运行该站点时,它在MyWeb.dll和MyWebDeploy.dll以及chokes中看到相同的类型.

错误消息:CS0433:类型'AV'存在于'c:\ WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\53d45622\6c032bd2\assembly\dl3\33f3c6b2\abc9430a_285ac901\MyWeb .DLL'和'c:\ WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\53d45622\6c032bd2\assembly\dl3\631e5302\0231160d_285ac901\MyWebDeploy.DLL'

asp.net web-deployment-project

4
推荐指数
1
解决办法
4915
查看次数

检查查询字符串是否为int的最佳方法是什么?

我的一位同事想到的一个问题是,检查查询字符串是否为int的最佳方法是什么.我建议使用经典的Int.Parse并尝试捕获,也建议使用TryParse.实际上我想不出任何其他方式.有任何想法吗?

c# asp.net

4
推荐指数
1
解决办法
1625
查看次数

C#:FileStream.Read()不读取文件,但返回0

我是这样做的:

static void Main(string[] args)
{
    string FileName = "c:\\error.txt";
    long FilePosition = 137647;

    FileStream fr = new FileStream(FileName, FileMode.Open);
    byte[] b = new byte[1024];
    string data = string.Empty;
    fr.Seek(FilePosition, SeekOrigin.Begin);
    UTF8Encoding encoding = new UTF8Encoding();

    while (fr.Read(b, 0, b.Length) > 0)
    {
        data += encoding.GetString(b);
    }
    fr.Close();
    string[] str = data.Split(new string[] { "\r\n" }, StringSplitOptions.None);
    foreach (string s in str)
    {
        Console.WriteLine(s);
    }
    Console.ReadKey();
}
Run Code Online (Sandbox Code Playgroud)

str数组以这些行结束:

*****手牌历史T5-2847880-18(比赛:S-976-46079)*****
手牌:8月11日星期二18:14

但文件中有更多行.

我已将error.txt上传到sentpace:http://www.sendspace.com/file/5vgjtn 这里是完整的控制台输出:the_same_site/file/k05x3a

请帮忙!我在这里真的很无能为力.提前致谢!

c# filestream

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

用于BlackBerry的QR码阅读器

是否有BlackBerry库/组件(开源或商业)集成在我自己的应用程序中,充当QR码阅读器?我想将它完全集成到我的应用程序中.

或者:有没有办法将开源ZXing库与相机结合使用,理想情况下是实时检测代码?

components blackberry qr-code

4
推荐指数
1
解决办法
1600
查看次数

如何访问在组件类中传递给Ember Component的属性?

我在模板中声明了一个emberjs组件:

<script type="text/x-handlebars" id="components/custom-component">      
  <h4>The name of the object passed is : {{object.name}}</h4>
  {{#if show_details}}
    <p>The details of the object passed are : {{object.details}}</p>
  {{/if}}
</script>
Run Code Online (Sandbox Code Playgroud)

现在我在我的html模板中使用这个组件:

<script type="text/x-handlebars" data-template-name="index">
  <ul>
    {{#each object in model}}
      <li>{{custom-component object=object}}</li>
    {{/each}}
  </ul>
</script>
Run Code Online (Sandbox Code Playgroud)

我的自定义组件的组件类如下所示:

App.CustomComponentComponent = Ember.Component.extend({
  show_details: function() {
      // return true or false based on the OBJECT's property (e.g. "true" if object.type is 'AUTHORIZED')
  },
});
Run Code Online (Sandbox Code Playgroud)

更新

我实现它的方式如下:

App.CustomComponentComponent = Ember.Component.extend({
    show_details: function() {
      var object = this.get('object');
      if (object.type == …
Run Code Online (Sandbox Code Playgroud)

components properties ember.js

4
推荐指数
1
解决办法
8777
查看次数

根据大小将文本文件拆分为较小的文件 (Windows)

偶尔会创建日志 (.txt) 文件,这些文件太大而无法打开 (5GB+),我需要创建一个解决方案,将其拆分为更小的可读块以在写字板中使用。这是在 Windows Server 2008 R2 中。

我需要一个批处理文件、powerShell 或类似的解决方案。理想情况下,应该对每个文本文件包含不超过 999 MB 的内容进行硬编码,并且不要停在一行的中间。

我在https://gallery.technet.microsoft.com/scriptcenter/PowerShell-Split-large-log-6f2c4da0找到了一个类似于我的需求的解决方案,有时可以(按行数)

############################################# 
# Split a log/text file into smaller chunks # 
############################################# 

# WARNING: This will take a long while with extremely large files and uses lots of memory to stage the file 

# Set the baseline counters  
# Set the line counter to 0  
$linecount = 0 

# Set the file counter to 1. This is used for the naming of the log …
Run Code Online (Sandbox Code Playgroud)

windows powershell split batch-file

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

如何使用版本号显示所有ASP.NET Web应用程序的加载/引用程序集?

我想在ASP.NET Web应用程序内的专用网页上显示所有已使用程序集的列表,以便进行调试和维护(在许多不同的服务器上有许多此Web应用程序的实例).可以从bin文件夹GAC调用程序集.我自己写了一些,但也有第三方集会.

是否有一种简单,自动的方式来获取Web应用程序的所有已加载或引用的程序集列表,包括版本号(调用System.Reflection.Assembly- GetName().Version...)?我是否必须显式传递所有程序集名称以进行版本检查,还是可以自动检索它们?我是否必须使用Reflection来获取依赖项/引用的完整列表?

asp.net reflection assemblies version

3
推荐指数
1
解决办法
2149
查看次数

Objective C - 在创建字符串数组时应用程序崩溃,我疯了吗?

如果我尝试使用这个简单的代码:

- (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Add the tab bar controller's current view as a subview of the window
    [window addSubview:tabBarController.view];

    NSString *stringMer = [NSString stringWithFormat:@"OK COOL"] ;
    NSString *stringMer2 = [NSString stringWithFormat:@"OK COOL"];

    NSArray *truc = [NSArray arrayWithObjects:stringMer,stringMer2];
}
Run Code Online (Sandbox Code Playgroud)

我的应用程序崩溃("无法读取未知的加载命令0x22"或只是常规崩溃)... applicationDidFinishLaunching来自我的FooAppDelegate,我没有更多的代码,这是正常的吗?

iphone cocoa cocoa-touch objective-c

3
推荐指数
2
解决办法
1583
查看次数