You are viewing our Forum Archives. To view or take place in current topics click here.
Skittles' Programming Support!
Posted:
Skittles' Programming Support!Posted:
Status: Offline
Joined: Aug 20, 201410Year Member
Posts: 6,813
Reputation Power: 413
Status: Offline
Joined: Aug 20, 201410Year Member
Posts: 6,813
Reputation Power: 413
I have made this thread to help you guys with any programming issues that you may encounter. I have a good knowledge of .NET languages (VB.NET, C#) but will try and help you with other languages if needed
How to post:
-Language:
-Description of issue:
-Any error messages:
-Code (Optional, but would help):
If you don't want to post the source code for any reason, that is absolutely fine. You could PM me and I will not make anything public, or feel free to withhold it and we can work around it
You can post on this topic, PM me or add me on Skype: lmSkittle for any assistance
How to post:
-Language:
-Description of issue:
-Any error messages:
-Code (Optional, but would help):
If you don't want to post the source code for any reason, that is absolutely fine. You could PM me and I will not make anything public, or feel free to withhold it and we can work around it
You can post on this topic, PM me or add me on Skype: lmSkittle for any assistance
#2. Posted:
Status: Offline
Joined: Dec 13, 20149Year Member
Posts: 250
Reputation Power: 10
Status: Offline
Joined: Dec 13, 20149Year Member
Posts: 250
Reputation Power: 10
#3. Posted:
Status: Offline
Joined: Dec 17, 201112Year Member
Posts: 823
Reputation Power: 41
ElAntrax wrote Language: C#
-Description of issue: Keep getting an error when I add Readfile()
-Any error messages: 'Readfile' is not declared. It may be inaccessible due to its protection level
-Code (Optional, but would help):
Hijacking Skittles topic because I saw it first! ;- )
You're calling a function which doesn't exist, you need to have a private sub Readfile() in there somewhere. :- )
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Aug 20, 201410Year Member
Posts: 6,813
Reputation Power: 413
Status: Offline
Joined: Aug 20, 201410Year Member
Posts: 6,813
Reputation Power: 413
ElAntrax wrote Language: C#
-Description of issue: Keep getting an error when I add Readfile()
-Any error messages: 'Readfile' is not declared. It may be inaccessible due to its protection level
-Code (Optional, but would help):
Just to point out, that language is Visual Basic, not C#
You are having that error because you are trying to call the Readfile() procedure but I do not see one there.
Add this code to get rid of the error:
Private Sub Readfile()
'put whatever code you want in here
End Sub
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.