current location:Home > 一段时间 search

Classify:
Found a total of 529 related content
  • Delphi2006 tutorial DbExpress efficient database development chm version
    Delphi2006 tutorial DbExpress efficient database development chm version
    When the author decided to update this book, it was hard to believe that nearly 4 years had passed from Delphi 7 to Delphi 2006. During this time, Borland's database access technology has also undergone considerable changes. First let's introduce the subject of this book: dbExpress. dbExpress has developed from version 2.0 of Delphi 7 to version 3.0 of Delphi 2006. In addition to updating support for the latest versions of various databases, the more important progress lies in the continuous improvement of execution efficiency and the improvement of Win32
    2024-01-19 0 723
  • Flash commonly used button codes word version
    Flash commonly used button codes word version
    Flash Player is a program that can play small and fast multimedia animations, as well as interactive animations, flying logos and images created with Macromedia Flash. This player is very small, takes only a moment to download, and is a great start for experiencing multimedia effects on the web. Flash also supports high-quality mp3 audio streams, text input fields, interactive interfaces, and much more. This latest version can view all flash formats. If you want to watch multimedia content on the web, flash player is almost
    2024-01-17 0 1923
  • Python operation Mysql example code tutorial
    Python operation Mysql example code tutorial
    This article introduces various code examples and detailed introductions such as Python operating MYSQL, executing SQL statements, obtaining result sets, traversing result sets, obtaining a certain field, obtaining table field names, inserting pictures into the database, executing transactions, etc. Most of the code is A sumptuous and beautiful code feast. If you want to view the online version, please visit: https://www.jb51.net/article/34102.htm
    2024-01-26 0 1364
  • The whole process of Android driver development Chinese WORD version
    The whole process of Android driver development Chinese WORD version
    Android's hardware abstraction layer, simply put, encapsulates the Linux kernel driver, provides interfaces upward, and shields low-level implementation details. In other words, the hardware support is divided into two layers, one is placed in user space (User Space), and the other is placed in kernel space (Kernel Space). Among them, the hardware abstraction layer runs in user space, and the Linux kernel driver The program runs in kernel space. Interested friends can come and take a look
    2024-02-02 0 557
  • The use of multi-threading technology in iOS development WORD version
    The use of multi-threading technology in iOS development WORD version
    This document mainly talks about the use of multi-threading technology in iOS development; the so-called process corresponds to an application, which is responsible for opening up memory space for application use, but the process cannot execute tasks (instructions). A process contains at least one thread, which is the execution flow of the program. When an iOS program starts, while creating a process, it will start running a thread, which is called the main thread; I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-28 0 1125
  • Delphi Programming Manual Online Updated Edition
    Delphi Programming Manual Online Updated Edition
    Online updated version of Delphi Programming General Tutorial. This tutorial is updated continuously by the official staff. The content of the tutorial is maintained by official personnel. It is very good for Delphi beginners and friends who want to get started with Delphi. It is rich in content, easy to understand, and as Delphi As technology develops, the content of the tutorial is updated in a timely manner. The prerequisite is that you can connect to the Internet.
    2024-01-19 3 1162
  • 17 common Python runtime errors for newbies Chinese WORD version
    17 common Python runtime errors for newbies Chinese WORD version
    This document mainly talks about 17 common Python runtime errors for novices; when you first learn Python, it may be a bit complicated to understand the meaning of Python error messages. Here are some common runtime errors that can cause your program to crash. Interested friends can come and take a look
    2024-01-23 0 812
  • Win32 API Function Manual chm version
    Win32 API Function Manual chm version
    Win32_API_Function Detailed Query Manual chm format, divided into restricting program function functions, registry processing functions, dialog box functions, time processing functions, disk processing functions, process functions, file processing functions, breakpoint setting lists and other related contents.
    2024-01-19 5 944
  • Advanced Tutorial for Android Experts - Android Widget Development Case
    Advanced Tutorial for Android Experts - Android Widget Development Case
    Advanced Tutorial for Android Experts (Part 8) - Android Widget Development Case (World Cup Countdown!), mainly explains how to use Android Widget to write a World Cup-style countdown program. The tutorial explains the production steps and code.
    2024-02-29 0 1592
  • Vuex Reference Manual Chinese CHM version
    Vuex Reference Manual Chinese CHM version
    Vuex is a state management model + library specially designed for Vue.js applications. It provides a centralized storage service for all components within the application, with rules ensuring that state can only change in expected ways. It can be integrated with the Vue official devtools extension to provide advanced features, such as zero-configuration time travel-like (timeline-based) debugging, and state snapshot export/import. This article brings you the Vuex reference manual. Friends who need it can come and take a look!
    2024-02-29 0 1219
  • Research on Android Hybrid Mobile Application Development Technology Chinese WORD Version
    Research on Android Hybrid Mobile Application Development Technology Chinese WORD Version
    At present, most mobile Internet applications and enterprise mobile applications adopt the platform-based native application development model. To develop a set of mobile applications that need to be compatible with multiple platforms, multiple development teams need to be formed. This results in high development costs for enterprises and long application update time. It does not meet the requirements of the mobile Internet era [6]. This article introduces AppCan, a hybrid mobile development model that combines native development and web development. Hybrid mobile application development supports mainstream Android, IOS, WindowPhone and other platforms, and uses standard Web technologies: HTML, CSS3, Java
    2024-02-28 0 976
  • Git version control and workflow Chinese WORD version
    Git version control and workflow Chinese WORD version
    This article is a summary of git version control and workflow. If some friends have not used git before and are not very familiar with the basic concepts and commands of git, you can start with the following basic tutorials: Git is a distributed version control system, and Compared with centralized version control systems similar to SVN, although centralized version control systems can enable multiple team members to collaborate on development, sometimes if the central server goes down, no one can submit updates and collaborate on development during the downtime. Even sometimes, if the central server disk fails and there happens to be no backup or the backup is not timely, then there may be losses.
    2024-02-27 1 1003
  • Android Chinese API collection chm version
    Android Chinese API collection chm version
    Android Chinese Translation Group - A collection of Android Chinese APIs. API documentation (Reference) is the basis of Android development. In the past three years (2007-2010), the official Chinese version of the API has not yet been released. The Android Chinese Translation Group has gathered a group of people to engage in Android development. People, forum moderators, college students, graduate students, etc. use their spare time to translate Android APIs. The number of people has grown from 1 to 80, and the number of published translations has ranged from 1 to 50.
    2024-02-29 8 1598
  • Detailed explanation of eclipse building SSH framework Chinese WORD version
    Detailed explanation of eclipse building SSH framework Chinese WORD version
    The SSH framework is one of the most commonly used frameworks. When building an SSH framework, some people always encounter problems like this. This document will introduce the entire process of building the SSH framework. Friends in need can download and take a look
    2024-02-29 0 719
  • Python module learning Chinese WORD version
    Python module learning Chinese WORD version
    This document mainly talks about module learning in Python; Python is composed of a series of modules. Each module is a file with the suffix py. At the same time, the module is also a namespace, thus avoiding the problem of variable name conflicts. We can understand modules as lib libraries. If you need to use a function or object in a certain module, you must import this module before it can be used. Except for the system default modules (built-in functions), which do not need to be imported. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-25 2 1042
  • Android_Intent detailed explanation WORD version
    Android_Intent detailed explanation WORD version
    This document mainly talks about the detailed explanation of Android_Intent; Intent is an abstract description of the action to be performed. Generally speaking, it is used as a parameter. Intent assists in completing the communication between various components of Android. For example, call startActivity() to start an activity, or broadcastIntent() to pass it to all interested BroadcaseReceivers, or startService()/bindse
    2024-01-29 2 2470
  • Application of Fragment in Activity WORD version
    Application of Fragment in Activity WORD version
    This document mainly talks about the application of Fragment in Activity; Fragment can be included in multiple Activities and can adapt the application to different screen sizes. When the screen size is large enough, an Activity can contain multiple Fragments. If this is not the case, another Activity will be started containing different Fragments. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-29 0 1014
  • Android AsyncChannel source code analysis WORD version
    Android AsyncChannel source code analysis WORD version
    This document mainly talks about the analysis of Android AsyncChannel source code; the AsyncChannel class is used to handle asynchronous message passing between two Handlers. The Handler for message passing can be from the same process or in different processes. Handler message passing between different processes Implemented using Android's Binder communication mechanism. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-27 0 569
  • Detailed explanation of Android program debugging Chinese WORD version
    Detailed explanation of Android program debugging Chinese WORD version
    When using eclipse to develop android programs, you can perform breakpoint single-step debugging just like VS. The Eclipse Java editor not only provides developers with common functions such as code writing, syntax correction, and real-time compilation, but it can also quickly modify and reconstruct Java source code and other advanced operations. Interested friends can come and take a look
    2024-02-26 0 884
  • Summary of three major techniques for performance optimization of programming language Perl Chinese WORD version
    Summary of three major techniques for performance optimization of programming language Perl Chinese WORD version
    This article will focus on discussing Perl performance optimization techniques. When using Perl to develop some service applications, sometimes you will encounter problems with Perl performance or resource usage. You can use require to load modules, use system functions and XS-based modules, and write yourself with low overhead. Modules, etc. to optimize Perl performance. Perl is a powerful language, a powerful tool, and a very delicious dish:-) Using many of Perl's features, you can achieve some very interesting and practical functions. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-27 0 1883
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!