- Messages
- 79
- Reaction score
- 81
- Points
- 28
the definition in the book; ASCII is American Standard Code for Information Interchange - widely used 7 bit coding system used for character data
We are currently struggling to cover the operational costs of Xtremepapers, as a result we might have to shut this website down. Please donate if we have helped you and help make a difference in other students' lives!
Click here to Donate Now (View Announcement)
No! You have to pretty much do the file size calculation thing mentally. D: Don't forget to add 10% of the total file size to your final answer btware we allowed to take calculators?
If it helps think of all the marks you CAN get without knowing anything in coding than you can't. You'll be surprised to find out that coding is only really about 25-30% the paper. Nail the rest, you'll be fiiiine, don't worry. Good luck!going to mess it up so much
Don't you give up man! you got this shiz. Go ace it.oh well, hope everyone the best
haha thank you for the supportDon't you give up man! you got this shiz. Go ace it.
Like I said, programming part of is really only about 30% of it. You can still get A without knowing crap. And that, is how you really do computing. like a sirhaha thank you for the support
but one must know his programming limits
well saidLike I said, programming part of is really only about 30% of it. You can still get A without knowing crap. And that, is how you really do computing. like a sir
Really? You sure we're still talking Cambridge here? I know edexcel. Its a joke, even 40s account for an A sometimes but Cambridge is pretty solid. They usually don't budge in their boundaries...Guys Dont worry , grade threshold of computing 9691 paper 22 of Oct/nov 2012 was just 45 (A) would you believe.. If you get 45 marks in paper 2 You get an A in your paper... Let assume that if we leave our coding part all of it, we still get enough marks to score A easily as coding can come in maximum of 15 -20 marks ...so this leaves you with 55 marks out of 75 ... Thats an A
Aw shucks :/ I'm so lazy to use my mind to calculate.. It has already to contain all this computing informationNo! You have to pretty much do the file size calculation thing mentally. D: Don't forget to add 10% of the total file size to your final answer btw
lol well imagine sitting a math paper plus the computing paper back to back. Thats my life for youAw shucks :/ I'm so lazy to use my mind to calculate.. It has already to contain all this computing information
wow okay I'm gonna shut up now lolmy brain is exploding with logs and sine rules and sine graphs and trigonometry and geometric series's and trapezium rules on top of everything like filesrecordsfuinctionsproceduresarrays2darraysiterativesandrepetitives. And honestly, I don't think i have much of a brain xD Its not the end of the world though.. I' not complaining... yet
Thankyou for sharing this here too. This helped me soo much I'm speechless Thankyou!For VB6 users:
Open
Prepares a file to be processed by the VB program.
App.Path
Supplies the path of your application
FreeFile
Supplies a file number that is not already in use
Input #
Reads fields from a comma-delimited sequential file
Line Input #
Reads a line (up to the carriage return) from a sequential file
EOF
Tests for end-of-file
Write #
Writes fields to a sequential file in comma-delimited format
Print #
Writes a formatted line of output to a sequential file
Close #
Closes a file
------------------------------------------------------------------------------------------------
Create a new notepad file called "names.txt" in directory C: and enter your name in it
Open vb6, create a textbox and a command button.
Reading from a file:
Private Sub Command1_click()
Dim MyName as string
Open "c:/names.txt" for Input As #1
Input #1, Name
Text1.text = Name
Close #1
End Sub
Run the code and click the command button. You will see your name appears in the textbox and so you have read the data successfully.
---------------------------------------------------------------------------------------------------
Writing into a file:
Private Sub Command1_click()
Dim MyName As String
Open "c:/names.txt" For Output As #1
MyName = Text1.Text
Write #1, MyName
Close #1
End Sub
-----------------------------------------------------------------------------------------------
Append:
Private Sub Command1_click()
Dim MyName As String
Dim MyAge As Integer
Open "c:/names.txt" For Append As #1
MyName = Text1.Text
MyAge = Text2.text
Write #1, MyName, MyAge
Close #1
End Sub
Replace Write by Print in the above code to see their difference.
Also, to write to separate lines, use Print/Write #1, MyName & vbCrLf & MyAge
------------------------------------------------------------------------------------------
Codes for searching data may come later!
The built in functions are different, for example say for string manipulations in vb.net LENGTH is to find the length size of a string. But in vb6 its LengthOfName =Len(Name.text)https://c14beeb7-a-62cb3a1a-s-sites...KBIMTTaxFJAP2Dmy_loVHAMjL3lxo_&attredirects=0
Guys! Are these notes using VB6? I just can't find the differemce in VB.NET or VB6
For almost 10 years, the site XtremePapers has been trying very hard to serve its users.
However, we are now struggling to cover its operational costs due to unforeseen circumstances. If we helped you in any way, kindly contribute and be the part of this effort. No act of kindness, no matter how small, is ever wasted.
Click here to Donate Now