Search found 3 matches
- Wed Jul 29, 2020 4:13 pm
- Forum: Coding Questions
- Topic: Internet UPC Database
- Replies: 5
- Views: 1382
Re: Internet UPC Database
Thanks for the replies, still not working. the website (https://www.upcdatabase.com/) takes a upc code and returns the information for that one upc code. It has several different formats it use to return that information. XML-RPC is the web service used to look up the upc code and return the ...
- Wed Jul 29, 2020 3:46 am
- Forum: Coding Questions
- Topic: Internet UPC Database
- Replies: 5
- Views: 1382
Internet UPC Database
Has anybody used this website (Internet UPC Database) to get information for upc code? all i got is redirected and then a timeout. Would post code but I tweaked it so much it don't do that anymore.
Found a snippet of code that did the redirect. Did take out my key.
rpc_key.s ...
Found a snippet of code that did the redirect. Did take out my key.
rpc_key.s ...
- Mon Jan 07, 2013 1:37 am
- Forum: Applications - Feedback and Discussion
- Topic: MealMaster: Decoding text file format to database
- Replies: 144
- Views: 62475
Re: MealMaster: Decoding text file format to database
Change this line:
If Len(Line.s) = 5 And (Line.s = "MMMMM" Or Line.s = "-----")
to this:
If Line.s = "MMMMM" Or Line.s = "-----"
Remove the comment marks in these lines;
Debug "----------**********//////////\\\\\\\\\\**********----------"
;CloseFile(RecipeFileHandle.i )
;ProcedureReturn ...
If Len(Line.s) = 5 And (Line.s = "MMMMM" Or Line.s = "-----")
to this:
If Line.s = "MMMMM" Or Line.s = "-----"
Remove the comment marks in these lines;
Debug "----------**********//////////\\\\\\\\\\**********----------"
;CloseFile(RecipeFileHandle.i )
;ProcedureReturn ...