-
Image-zooming
实现bmp位图的图像放大缩小,包含整个mfc的源码文件。(Achieve bmp bitmap image zoom, contains the entire mfc source files.)
- 2014-02-13 10:17:26下载
- 积分:1
-
785744
使程序窗口总在最前面显示,C++Builder精选编程学习源码,很好的参考资料。(The program window display at the front, C++Builder select learning programming source code, a good reference.)
- 2013-11-22 06:25:30下载
- 积分:1
-
SSD1322_Drive
基于STM32F103的SSD1322驱动,并口串口驱动模式可选(STM32F103 SSD1322 driver based on serial parallel drive mode optional)
- 2020-10-26 15:29:59下载
- 积分:1
-
UVectorFont
说明: VC++将文字处理成轮廓边框效果只显示文字的轮廓,不显示文字实体,有点像空心文字,图形 + 文字 + 矢量(VC ++ treats the text as outline border effect, only displays the outline of the text, does not display the text entity, a bit like hollow text, graphics + text + vector)
- 2020-12-21 17:29:07下载
- 积分:1
-
BASEFILE_11_06
解算接收机伪距,载波相位等观测量,从而定位,精度较高,因为没有加载波(compute the carrier s postion)
- 2012-02-27 22:49:42下载
- 积分:1
-
Adjacency-matrix-traversal
邻接矩阵遍历,可以实现邻接矩阵的深度和广度遍历(Traverse the adjacency matrix, adjacency matrix can achieve the depth and breadth traversal)
- 2013-11-17 10:53:47下载
- 积分:1
-
C# 下载图片示例
using System;using System.Web;public class DownImg : IHttpHandler { //图片下载功能 public void ProcessRequest(HttpContext context) { System.Net.WebResponse response = null; System.IO.Stream stream = null; string path = context.Request.Url.Query.Split(new string[] { "coverimg=" }, StringSplitOptions.RemoveEmptyEntries)[1]; System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(path); response = request.GetResponse(); stream = response.GetResponseStream(); System.IO.MemoryStream memStream = Txooo.Mobile.HttpTools.CloneStream(stream); byte[] bytes = new byte[memStream.Length]; memStream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 memStream.Seek(0, System.IO.SeekOrigin.Begin); context.Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 string fileName = DateTime.Now.Ticks.ToString() ".jpg"; context.Response.AddHeader("Content-Disposition", "attachment; filename=" fileName); context.Response.BinaryWrite(bytes); context.Response.Flush(); } public bool IsReusable { get { return false; } }}
- 2014-05-29下载
- 积分:1
-
TLV5618-DA
基于stm32的TVL5618的驱动程序,亲测可用(Based stm32 of TVL5618 driver, pro-test available)
- 2021-04-20 22:18:49下载
- 积分:1
-
MFC-ODBC-database-applications
MFC应用程序ODBC数据库,可以运行成功的使用MFC编写的c++代码(MFC ODBC database applications)
- 2014-06-25 11:15:21下载
- 积分:1
-
Designs the procedure which a compartment dispatches, the output all
possible s...
设计一个车厢调度的程序,输出所有可能的序列 假设停在铁路调度站入口处的车厢序列的编号依次为1,2,3,n , 设计一个程序,求出所有可能的长度为n 的车厢序列。 实现栈的顺序存储结构SqStack之上实现栈的基本操作,即实现栈类型。程序对栈的基本操作必须借助于基本操作进行。 测试数据取 n=1,2,3, 程序输出的结果应该在屏幕上显示出来-Designs the procedure which a compartment dispatches, the output all
possible sequences supposition to stop in the railroad dispatch
station entrance compartment sequence serial number is in turn 1, 2,
3, n, Designs a procedure, extracts all possible lengths is the n
compartment sequence. Realizes above stack smooth memory structure
SqStack to realize the stack elementary operation eo, namely
realization stack type. The procedure must draw support to the stack
elementary operation eo in the elementary operation eo carries on. The
test data takes n=1,2,3, The procedure output result should show on the screen
- 2022-03-26 04:37:19下载
- 积分:1