Search results for query: *

  1. J

    Issue with Insert Statement

    I am having an issue with my insert statment... I am not sure exactly what the issue is but I think it might be the values where its a boolean, or perhaps its where the strings are. Any help would be appreciated. cmd = NewOleDbCommand("INSERT INTO ORDERS (OrderID, JobID, CustomerID...
  2. J

    reading through a Excel file.

    I needed to combine them for another software, but i accomplished this. I ended up using VBA and doing it all through access fairly simply. thank you for the response.
  3. J

    reading through a Excel file.

    I am not sure quite how to begin programming a solution to this problem. I need to take an excel file that has the following headers... ID1, NAME, ID2, PCPNAME there are multiple records that have the same ID2. I need to combine those records so that it would go ID1|ID1, NAME, ID2, PCPNAME...
  4. J

    Question how to get a specific items from listbox

    you can check out the listbox.findstring method. ListBox.FindString Method (String) (System.Windows.Forms) That would probably do the trick for you!
  5. J

    Parsing .xlsx and writing to .txt

    Imports System Imports System.IO Imports System.Text Imports Microsoft.Office.Core Imports Excel Imports System.Collections Imports System.Data.OleDb Imports ParseTool.GlobalVariables Public Class VJHoldCode Public Shared formatDate As String Public Shared j, c As Integer Public...
  6. J

    Question Trying to find a way to streamline this process

    Imports System.Threading Imports System.IO Imports ParseTool.GlobalVariables Module Main Public loop1 As Boolean = False Sub Main() Do Until loop1 = True Dim pickUpIKA As String() = Directory.GetFiles("P:\inetpub\ftproot\IH\IKA_BILLING\", "*.zip") Dim...
  7. J

    Question Trying to find a way to streamline this process

    Imports System.Threading Imports ParseTool.GlobalVariables Imports System.IO Module Main Public Class ProcessName Private instanceName As String Public Sub New(name As String) Me.instanceName = name End Sub Public Sub JobProcess(ByVal...
  8. J

    Question Trying to find a way to streamline this process

    Imports System.Threading Imports ParseTool.GlobalVariables Imports System.IO Module Main Public Delegate Sub JobProcess() Public Class ProcessName Private instanceName As String Public Sub New(name As String) Me.instanceName = name End Sub...
  9. J

    Question Trying to find a way to streamline this process

    Imports System.Threading.Thread Imports System.Threading Imports System.Threading.ThreadPool Imports ParseTool.GlobalVariables Module Main Public Delegate Sub Processes() Public loop1 As Boolean = False Sub Main() Do Until loop1 = True Dim pickUpIKA() =...
  10. J

    Question Trying to find a way to streamline this process

    Imports System.Threading.Thread Imports System.Threading Imports System.Threading.ThreadPool Imports ParseTool.GlobalVariables Module Main Public Delegate Sub Processes() Public loop1 As Boolean = False Sub Main() Do Until loop1 = True Dim pickUpIKA() =...
  11. J

    Question Trying to find a way to streamline this process

    Imports System.Threading.Thread Imports System.Threading Imports System.Threading.ThreadPool Imports ParseTool.GlobalVariables Module Main Private Delegate Sub IKA() Private Delegate Sub Tentative() Private Delegate Sub PedDental() Private Delegate Sub Pathways() Private...
Back
Top