Android Question Debugger Error on Commented Line

Mick96

Member
Licensed User
All of a sudden I started getting an error on Line 168. I tried commenting out the entire block, Made 168 a blank Line, Closed B4A, Emulator, and all windows.
Reopened and reloaded the project and still have same issue. I have searched the forums and haven't been able to find this same issue. What Am I Missing here? I also tried cleaning the Project.
Thanks!
ErrorLine168.PNG
 

Mick96

Member
Licensed User
The Upload File is too large for the server to process. 20.5 mb. I'm guessing it's the 5 Images i'm using. If I can slim them down I'll get that zipped up and out.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
You also can put it on dropbox and upload it there and post a link here.
Usually the size is ok using the build in Export as zip method in the ide.
If the images are big then this is probably the reason.

Create a small project without big images (or replace them by smaller ones) and only the relevant code
 
Upvote 0

OliverA

Expert
Licensed User
Longtime User
Is this in debug mode? You actually have a class/module named HttpJob? If not, than it’s complaining about the actual HttpJob class and an issue with it. What above that error message is producing that log output? How about commenting out the webview.loadurl statement?
 
Upvote 0

Mick96

Member
Licensed User
I stripped out the Image files so you can at least get the full code.
Thanks so Much.
 

Attachments

  • jsonDownloadWithout Imags.zip
    11.3 KB · Views: 148
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
I stripped down nearly everything not needed (all the global vars, all the global lists).
To be honest; i did not understand anything for what the lists should be.
Looks like you just overcomplicated the needs.

I changed the listview to use addtwonline2 and giving just the map of the item to each of them to access it in the event directly and without all the lists.
 

Attachments

  • jsonDownload2.zip
    10.4 KB · Views: 138
Last edited:
Upvote 0

Mick96

Member
Licensed User
I'm rebuilding the project piece by piece and it is being caused by:
' Dim Job As HttpJob
' Job.Initialize("Image", Me)
' 'JobsIndex.Put(Job, links.Size - 1)
' Job.Download(image)

Now I will find out why that's happening.
I think I'm good now.
Thanks So Much!!
 
Upvote 0
Top