You are viewing our Forum Archives. To view or take place in current topics click here.
Skittles' Programming Support!
Posted:

Skittles' Programming Support!Posted:

Skittle
  • Comment King
Status: Offline
Joined: Aug 20, 20149Year Member
Posts: 6,813
Reputation Power: 413
Status: Offline
Joined: Aug 20, 20149Year 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

The following 2 users thanked Skittle for this useful post:

Sif- (12-19-2014), Redacted (12-19-2014)
#2. Posted:
ElAntrax
  • Resident Elite
Status: Offline
Joined: Dec 13, 20149Year Member
Posts: 250
Reputation Power: 10
Status: Offline
Joined: Dec 13, 20149Year Member
Posts: 250
Reputation Power: 10
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):
[ Register or Signin to view external links. ]
#3. Posted:
vRice
  • Winter 2016
Status: Offline
Joined: Dec 17, 201112Year Member
Posts: 823
Reputation Power: 41
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):
[ Register or Signin to view external links. ]


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. :- )
#4. Posted:
Skittle
  • V5 Launch
Status: Offline
Joined: Aug 20, 20149Year Member
Posts: 6,813
Reputation Power: 413
Status: Offline
Joined: Aug 20, 20149Year 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):
[ Register or Signin to view external links. ]

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
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.