这篇是在10年测试QT过程中遇到的问题:1、中文显示问题:#include <QApplication>#include <QLabel>#include <QTextCodec>int main(int argc, char* argv[]){ QApplication app(argc,argv); QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); QLabel *label = new QLabel(tr("这里是中文")); label- Read More
这篇是在C#中注册COM+组建测试用例.....项目创建:1.添加引用System.EnterpriseServices,并且using System.EnterpriseServices; 2.Public class public class ComSample:ServicedComponent //类要从ServicedComponent继承在类的前面要添加 [Transaction(TransactionOption.Required)],以启用事务步骤1:(实例:如下图1)(1)给类一个强名称,创建强名称,可以使用 sn 工具。 在 Visual Studio .NET 命令提示符 Read More
js:$(function () { $.ajax({ type: 'GET', url: 'GetJson.ashx', dataType: 'json', success: function (data) { //$.each(data.menus, function (idx, item) { // alert(idx); // alert(item.street); //}); var menulist = ""; //alert(data); $.each(data.menus, function (i, n) { Read More