Home > database >  Don't come. How to do
Don't come. How to do

Time:10-01

Lvs_name=Qingdao China shipping industry len (lvs_name)=12
And lvi_value +=asc (mid (lvs_name, I, 1)) is lvi_value +=asc (mids (Qingdao China shipping industry, 12, I) how much is this ah, how to cycle

CodePudding user response:

Sorry, didn't understand

CodePudding user response:

A Chinese 2 bytes, each byte of ASCII,

CodePudding user response:

How to calculate? How to cycle? Don't understand,

CodePudding user response:

Do you want to do

CodePudding user response:

Each master! Just wave to see the sunrise network.net training: financial audit data analysis system


Mainly includes:
CS structure "financial audit data analysis system" course description
Name of classification course introduction related knowledge
The focus of the audit knowledge audit work and the main points -
Audit method is commonly used in the working process of the audit -
The definition of financial knowledge, general ledger, subsidiary ledger, credentials and their relationship -
Conventional accounting fraud accounting method -
Proof of charge to an account in the process of working knowledge of reimbursement ticket
10 auxiliary software engineering development tool used to improve the development efficiency
Source management in.net development process, the application of CVS, VSS
A database table for the design and performance optimization of improve data access performance
How to quickly build three layer structure application system design mode
Flexible application system configuration file configuration file
How to ensure that the database data integrity and consistency of database transaction
.net custom controls the design and development of custom controls
Program to realize CS structure under the line chart, trend column chart, pie chart, regional figure figure
The.net folder, file tree TreeView TreeView control
Flexible use DataGridView control for data display and processing the DataGridView control
Commonly used design methods and concept system permissions control system permissions
The.net application resource files the application of a resource file ResourceFile
Not to install the.net framework how to run the.net application framework application
System operation log, the error log processing method commonly used log processing
Office document in the.net seamless interface and perfect Office document application
The common components and the development of the library building project utility components
Across the database access to financial data and financial data huge amounts of data transplant
Learning character string encryption and decryption operations encryption
Functional assembly reflect a call
Define Excel template, automatic access to the database table data on Excel flexible application in program
.net applications to realize dynamic change skin function system change skin
.net comes with packaging, the use of third party packaging tools, database distribution system published
I am a beginner, it is very useful to me, but I don't know how the financial management system to work, have the experience of friends please help me, best can provide relevant information and source code!! Let me familiar with this knowledge, to understand it, it would be easy to write, thank you!

CodePudding user response:

Very difficult!

CodePudding user response:

How this looks like encryption algorithms, you can set breakpoints, debugged, just know is how to calculate, is just the sum of ASCII value,

CodePudding user response:

The building Lord, you let me help you solve:
//the following procedures section you can be directly copied into the PB range test, to test with a button click.
//1. To add password ASCII
String lvs_name, lvi_value
Lvs_name='Qingdao China shipping industry'
Long ll_len, I, ll_value
Ll_len=len (lvs_name)

For I=1 to ll_len
Lvi_value +=string (asc (mid (lvs_name, I, 1)), '000')//this is connected, each byte of the ASCII note the result is a string
Ll_value +=asc (mid (lvs_name, I, 1))//this is will add up each byte ASCII value, pay attention to is the result of numerical
Next

Messagebox (" prompt ", "the content of the converted ~ nASCII string is:" + lvi_value + "~ nASCII total value is:" + string (ll_value))

The test result is correct. The ASCII string of results are obtained as follows: 199224181186214208186163202181210181
The ASCII value of the total: 2335

//2. Will the encrypted ASCII string reverse calculated Chinese characters
Later turned to ASCII string is simple, as long as each of the three ASCII to CHAR. Like this:
String lvs_name=', lvi_value

Lvi_value='https://bbs.csdn.net/topics/199224181186214208186163202181210181'//is that you get above ASCII string
Long ll_len, I, ll_value
Ll_len=len (lvi_value)

For I=1 to ll_len
Lvs_name +=string (char (long (mid (lvi_value, I, 3))))//this is to convert every two ASCII characters
I=I + 2
Next
Messagebox (" prompt ", "the content of the ASCII string conversion back to:" + lvs_name)
//run after lvs_name='Qingdao China shipping industry results right

In addition, before get another numerical: ASCII value 2335, total will not be able to reverse the calculated 'Qingdao China shipping industry, if you want to reverse calculation, I in the above method, if it is used to compare, can use the method of the total value.

The landlord must give enough points ah, I but it took time to help you test. Ha ha.

Again, by the way, if between English and Chinese, or all of them are in English or Chinese, can be normal processing. Don't worry about it. Remember to foot points. Thank you for the original poster.

  • Related