-
ghost最新1.0修改的代码完美编译
希望大家学习之用收藏此份代码 禁止用其他用途 .
- 2023-02-23 10:50:04下载
- 积分:1
-
ROHC报头压缩
无线传输在客户端实现压缩数据报的冗余报头,因为对于同一连接来说,IP报头、TCP/UDP报头有很大的冗余,将冗余报头压缩之后会很大提高效率。
- 2022-09-24 20:20:03下载
- 积分:1
-
XP-Style_Button_Dome 是个画XP按钮的例子,包含源码-XP-Style_Button_Dome is painting XP button examples, including source
- 2022-03-18 08:35:39下载
- 积分:1
-
STM32F103CX裸机测试程序-LED闪烁
STM32F103CX裸机测试程序,实现LED闪烁,在KEIL MDK 4.5和5.0下均可编译通过,下载到STM32F103C8T6核心板成功运行!
- 2022-04-27 04:43:17下载
- 积分:1
-
C# 打印XPS文档 XPS文件打印
C# 打印选择的XPS文档,打印XPS文件,相关代码如下:
private void button1_Click(object sender, RoutedEventArgs e)
{//打印选择的XPS文档
var MyDlg = new Microsoft.Win32.OpenFileDialog();
MyDlg.InitialDirectory = System.IO.Directory.GetCurrentDirectory();
MyDlg.Filter = "XPS文件(*.xps)|*.xps|所有文件(*.*)|*.*";
if (MyDlg.ShowDialog() == true)
{
string MyFileName = MyDlg.FileName;
var pDialog = new PrintDialog();
pDialog.PageRangeSelection = PageRangeSelection.AllPages;
pDialog.UserPageRangeEnabled = true;
if (pDialog.ShowDialog() == true)
{
var MyDocument = new System.Windows.Xps.Packaging.XpsDocument(MyFileName, System.IO.FileAccess.ReadWrite);
FixedDocumentSequence MyFixedDocumentSequence = MyDocument.GetFixedDocumentSequence();
pDialog.PrintDocument(MyFixedDocumentSequence.DocumentPaginator, "我的XPS打印文档");
}
}
}
- 2022-03-23 09:37:24下载
- 积分:1
-
stm32f103vct6驱动ADS1248源码
用ADS1248实现采集铂电阻两端电压,实现温度采集,利用stm32f103vct6单片机与ads1248通信读取电压值转化为铂电阻两端电压值再利用查表法或者公式计算法得到温度
- 2022-03-13 11:30:34下载
- 积分:1
-
批量图片合并源码
批量图片合并源码
- 2016-06-03下载
- 积分:1
-
PIC8单片机ADC应用
#include
volatile unsigned char adresult;
void ADC_Sample(unsigned char adch);
void DelayXms(unsigned char x);
#define _DEBUG //调试程序用
/**********************************************************
函数名称:AD_Sample
函数功能:AD检测
入口参数:adch - 检测通道
出口参数:无
备 注:采样通道需自行设置为模拟口
采样10次,取中间八次的平均值为采样结果存于adresult中
**********************************************************/
void ADC_Sample(unsigned char adch)
{
static unsigned int adsum = 0;
static unsigned char admin = 0,admax = 0;
static unsigned char adtimes = 0;
ADCON1 = 0; //左对齐
ADCON0 = 0X41 | (adch
- 2022-01-25 15:00:46下载
- 积分:1
-
UniteFindCompositor
C#数据库升序、降序排列数据,对联合查询后的结果进行排序,在SQL语句中经常用到对读取到的数据集进行排序的问题,本例是在联合查询后进行的数据库升序排列和降序排列,有兴趣的可一看。(C# database Ascending, Descending data, to sort the results in the union query, sort of read data set is often used in SQL statements, this case is the union query the database in ascending order and descending arranged interested can see.)
- 2013-04-25 11:29:12下载
- 积分:1
-
c# 通过int长度判断当前系统是64位还是32位
c# 通过int长度判断当前系统是64位还是32位
- 2014-01-27下载
- 积分:1