码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
使用sendto发送CString类型数据
发送端: int len = m_strSend.GetLength(); if (0 == len) { strState.Format(L"请填写需要发送的数据!"); GetDlgItem(IDC_STATIC_SEND_STATE)->SetWindowText(strState); //动态指定static text显示内容 return; } int byteLe...
分类:其他好文   时间:2015-01-19 23:41:05    阅读次数:544
VC中unicode字符集下sendto发送char数组
UpdateData(true);//刷新控件的值到对应的变量 int len = m_strSend.GetLength(); if (0 == len) { strState.Format(L"请填写需要发送的数据!"); GetDlgItem(IDC_STATIC_SEND_STATE)->SetWindowText(strState); //动态指定static text显示内容...
分类:编程语言   时间:2015-01-19 23:37:57    阅读次数:400
C# MySql 操作类
/* MySql 类 */using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using MySql.Data.MySqlC...
分类:数据库   时间:2015-01-19 23:34:21    阅读次数:294
TextBlock换行
silverlight支持在TextBox中用AcceptsReturn="True"来换行,但是TextBlock不支持此属性,因此需要在显示在TextBlock上的文字做些改变。1.用"\n"换行1txbView.Text ="Hello World\nMy Name is Jerry\nHah...
分类:其他好文   时间:2015-01-19 22:35:45    阅读次数:131
C# List<object> 按特定字段排序
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace List...
分类:编程语言   时间:2015-01-19 20:54:26    阅读次数:261
C# List<Object>值拷贝
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text...
分类:Windows程序   时间:2015-01-19 20:50:56    阅读次数:270
C# 获取系统环境数据
using System;using System.Data;using System.Text.RegularExpressions;using System.Threading;namespace DelegateTest{ public class Program { ...
分类:Windows程序   时间:2015-01-19 20:46:52    阅读次数:190
JavaWeb之Request/Response代码修炼篇(五)
1. 解决中文字符编码问题 String str = "我爱java"; //第一种方法 response.setContentType("text/html;charset=GBK");(推荐) //第二种方法 //response.setHeader("Content-Type","text/h...
分类:编程语言   时间:2015-01-19 20:46:29    阅读次数:146
C# Socket编程
using System;using System.IO;using System.Net;using System.Net.Sockets;using System.Text;namespace ConsoleApplication2{ public class Program { ...
分类:Windows程序   时间:2015-01-19 20:45:48    阅读次数:158
C# 获取一个文件的MD5值
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplic...
分类:Windows程序   时间:2015-01-19 20:44:43    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!