Search results for query: *

  1. K

    Question Twain - Total Files Scanned

    Hi All, Currently Im using Accusoft SDK to develop a system for scanning document files. Right now Im facing a problem with the current situation as below, FYI, I'm using the Twain Scanned EventArgs Question: 1) How can I count total all document files has been scanned? OR 2) How to detect...
  2. K

    Question EnterpriceLibarary UpdateDataSet

    Hi All, Currently Im using Microsoft EnterpriceLibrary "UpdateDataSet" to insert all the data in one times, Microsoft.Practices.EnterpriseLibrary.Data.Database.UpdateDataSet(DataSet dataSet, String tableName, DbCommand insertCommand, DbCommand updateCommand, DbCommand deleteCommand...
  3. K

    SELECT CASE problem

    Select Case sNumber Case str200 xxxxx Case "567", "890" xxxxx End Select so, how to change the str200 variable values same as hard code values? "123","234"
  4. K

    SELECT CASE problem

    Hi All, I'm doing the select case coding without hard code into the program, but do it in the alternate way. For example, If i hard code everything inside the select case statement below, it work fine Select Case sNumber Case "123", "234" xxxxx Case "567", "890" xxxxx End Select BUT...
  5. K

    Question Report Viewer: Export to PDF

    Hi all, I have a question regarding the report viewer export function, once i export to PDF format, the barcode not display out, but the Excel format it do. What is the problem? Excel PDF
  6. K

    SQL Server 2005: Timeout Expired

    Hi all, I have a .net application that run at the production 24hrs. 1st case: When i run the application around 2 days, next day i walk in to the production, i noticed that my application is "Out of responding". After that I closed all the application and tried to manual insert/update into...
  7. K

    Looping Multithread will cause HIGH USAGE?

    Oops, like that. How can I improve the coding for real time using?
  8. K

    Looping Multithread will cause HIGH USAGE?

    Some site are using delegates, (1) may I know this function is should put at where? (2) Is that will increase scanning performance and never cause high usage? Please advice
  9. K

    Looping Multithread will cause HIGH USAGE?

    Here is my clsThread Imports System.Reflection Public Class clsThread Private TheRecord As DataRow Private TheValue As Object Public ErrMsg As String Public Sub AssignValue(ByVal TheRcd As DataRow, ByVal Value As Object) TheRecord = TheRcd TheValue = Value...
  10. K

    Looping Multithread will cause HIGH USAGE?

    Do While Not stopFlag pmCon.QueryMe("Select * from DELL_OPC_ADDRESS where processing <> 1 and Active=1 and OPCServer=" & OPCServerNo2Scan, DTOPCAddress) If DTOPCAddress.Rows.Count <> 0 Then For Each DR In DTOPCAddress.Rows If Not OPCFunc.ReadOPCTag(DR("Address"), tmpValue)...
  11. K

    How to Archiving Database?

    Hi All, actually im using sql server 2005. How i can do it without compile a EXE file from vb.net coding.
  12. K

    How to make LOOP faster??

    hi, Good advice, im okay. No problems to that. Have comment only have improvement. Well, i will have my own reference and improve next time. By this current status, is that i need to modify and redo again? Since i not enough time to do so.
  13. K

    How to make LOOP faster??

    sorry here u go: Do While Not stopFlag 'pmCon.QueryMe("Select * from DELL_OPC_ADDRESS where processing <> 1 and Active=1", DTOPCAddress) pmCon.QueryMe("Select * from DELL_OPC_ADDRESS where processing <> 1 and Active=1 and OPCServer=" & OPCServerNo2Scan, DTOPCAddress)...
  14. K

    How to make LOOP faster??

    hi, currently i have a function that involve DO WHILE Loop......... Within the loop, i have 600 hundred data need to trigger and update the data. Since it contains hundred data need to scan and trigger, how i can make the loop more faster. Once i need to update a records behind, it take...
  15. K

    UltraGrid - Object References not set to an instance of an object

    Here is my screenshot: i already try to put all the TRY..CATCH function, but all still unable capture the error above to debug...... Eg: InitialLayou, FormLoad, InitialRow.... etc.... all i have to put, but the exceptione error still display. The problems is, sometime it will display...
  16. K

    A generic error occurred in GDI+

    Since my program have a timer to has real time monitoring. After a long duration, my program will hit to memory usage 700k and above. Then it display an exception error "A generic error occurred in GDI+". how to solve this problems? Please advice :confused:
  17. K

    Datatable internal index is corrupted: 13

    actually im using Infragisctics tool to display my data, below is my code If frmMDI.UltraTabbedMdiManager1.TabGroups.Count > 0 Then For i As Integer = 0 To frmMDI.UltraTabbedMdiManager1.TabGroups(0).Tabs.Count - 1 If...
  18. K

    New Topic Copy table to another database? (Table Exists)

    thanks your idea. if the table not exists how the script can be run? besides, i need to copy from 1 database table to another database table . :P
  19. K

    New Topic Copy table to another database? (Table Exists)

    How to copy from one table to another database? (Whether it exists or not i also need to insert records inside)?? the script below only allow me execute 1 time. If i need to insert the new records inside the same table, how it can be done? SELECT HOURLY_OUTPUT.* INTO...
  20. K

    ~~Work Week~~

    can I have some example?
Back
Top