This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Function BuildLabelMarkup(Context As IDataSource, Process As IDataSource, Label As IDataSource) As String Implements ILabelBuilder.BuildLabelMarkup | |
Dim listNo As String = Process.GetValue("List No.", "") | |
Dim lotnum As String | |
If listNo = "07064" Then | |
lotnum = Process.GetValue("Lot No.", "") | |
Else | |
lotnum = Process.GetValue("Lot No.", "") + "-" + Process.GetValue("SublotNumber", "") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Text; | |
public class HTTPClient |
NewerOlder