ICode9

精准搜索请尝试: 精确搜索
  • ComboBox1 绑定手动创建的DataTable2022-09-06 20:02:32

      '************************************************** '*过程名称:DT_PAFORMAL '*功能说明:员工类别 '************************************************** Public Function DT_PAFORMAL() As DataTable Dim dt As New DataTable Dim

  • delphi调用打印机打印Pdf格式文件2022-06-21 22:00:16

     use Vcl.Printers, Winapi.ShellAPI;procedure TForm1.PrintDocument(const documentToPrint: string); var printCommand: string; printerInfo: string; Device, Driver, Port: array[0..255] of Char; hDeviceMode: THandle; begin if Printer.PrinterIndex =

  • 存档2022-01-15 20:31:43

    4.强制跳转(暂时不会) ========================实现的分析:========================== 自定义型的呢? 如果全不是 上面的那些类型则为自定义型 如mov al, 2 C3 02 B0 如果combobox 不为空(把这个加到前面去) 补充 90 20 00的 那些判断需补机器码的个数 ---------------

  • pywinauto操作笔记2021-12-15 06:02:00

    from pywinauto import application app = application.Application(backend="win32") # 默认为win32,设置成‘uia’出错 app.start(r"notepad.exe") app['Notepad'].wait('ready') # 'Notepad'为类名,用标题名“无标题 - 记事本”也可以 app['N

  • WinForm ComboBox不可编辑与不可选择2021-06-26 12:01:55

    Toolbox——Common Controls——ComboBox - 不可编辑 1) 代码方法 在***.cs中修改,而不是**.Designer.cs中修改 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.T

  • 给定 ComboBox 的默认值2021-05-10 17:34:24

    unit Unit1; interfaceuses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls; type   TForm1 = class(TForm)    ComboBox1: TComboBox;    Button1: TButton;    Button2: TButton;    procedure FormCreate(Se

  • Delphi 获得数据库中所有表名和表字段的方法 1、通过内置函数(GetTableNames、GetFieldNames)2021-04-14 09:05:07

    1 ADOConnection1.GetTableNames(ComboBox1.Items, False);  //获取所有表名    1 ADOConnection1.GetFieldNames(ComboBox1.Text,ComboBox2.Items);  //获取表的所有字段名

  • wpf 可筛选下拉框2020-04-17 18:00:45

    using System.Collections.Generic; using System.Windows; using System.Windows.Controls.Primitives; using System.Windows.Input; namespace WpfApp25 { /// <summary> /// MainWindow.xaml 的交互逻辑 /// </summary> public partial class Mai

  • VBA自学应用(13)——二级组合框2020-01-11 19:05:18

    现在我们有两列数据如图所示 需要通过窗体做成如下效果 首先呢,我们画一个类似图中的两个复合框 在UserForm_Initialize事件中键入如下代码 Private Sub UserForm_Initialize() Dim i As Long, j As Long Dim col As New Collection Dim rng As Range D

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有