Replace TYPE w/ STRUCTURE or CLASS
Replace REDIM PRESERVE myArray(n) w/ ArrayList (MSDN link) which exposes .Add() to add items into the list. The link to MSDN contains...
INTERFACE is not for storing data but for defining "contract" for your objects (MSDN)
Use STRUCTURE if you want to store simple data
ArrayList can be used without having to worry...
Not sure how you get 4 tables since there is only one SELECT. You maybe getting the "messages" (usually the row affected count) from the INSERTs (unless your spMoldingBarcodeCreate actually...
Well, the blocks are there as helper functions. So if you do not want to spend time in re-creating database connection functionalities, you can just import the DATA block and use it.
Before we go on, I just wanna remind you that ASP.NET is a server side technology. The output from ASP.NET is still HTML tags/elements and thefore interpreted by browsers as it is w/ other server...
The only way that I could think of is to hook into network socket stack (no idae on how to do it) which pretty much the same way how network sniffer works.
Auto-numbered field cannot be updated from the client-side. Eventhough this number is generated when creating new DATAROW in the DATATABLE, this value has to be ignored when doing an INSERT (thus,...
I've tested that workaround and it does work. However, you will need to enabled MIXED user security setting (allow windows and SQL server authentications).
A workaround that I could think of is (not sure if this will work w/ SQL server) to redirect an external port to an internal port (IP forwarding). So open up an arbitrary external port number (like...
Hmm ... that is the wierd thing. It works fine for me w/o putting the delay in and I've tried it on my home and work PC. I'm wondering if you have updated your .Net framework to the latest version....
I know that they are almost identical. I copied it from Microsoft website and made a little modification just to make it work w/ OPTION EXPLICIT and OPTION STRICT set to ON.