Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Miners47

    Copy File Not On Disk

    I am creating an application that allows users to drag and drop saved network/local files into a datagrid to help them organize information related to a specific order (i.e faxes, written correspondence etc...). The application retreives the physical file location during the drag/drop actions...
  2. Miners47

    Row Width Question - MSFlexGrid

    I am using an MSFlexGrid control to display information to my users about the line items on a specific sales order. I would like to show summary information within the grid with some extra text. However, the additional text that I would like to show my users carries over into 3 columns. Is...
  3. Miners47

    Number Pad Plus Sign

    I am trying to represent the number pad plus sign in a Code 128 Barcode being printed on a Zebra S600. Anyone have any ideas or examples they could provide to accomplish this task? Thanks in advance.
  4. Miners47

    missing *.ocx file in complied *.exe

    The standard PD&W that comes with VB6 should show you all of the "dependent" files which will allow you to check or uncheck these files as needed before the install package is actually created. By default, the necessary files (OCX, DLL files) are checked to be included in the package...
  5. Miners47

    Database for Shared Access

    I guess it would depend upon how dynamic the data is the users will be accessing. And, how often the users need to see "real time" data. Could you give some more information about the environment this application will be in?
  6. Miners47

    Database for Shared Access

    I think what you are wanting to do is lock a particular record to ensure data integrity. Check out this article from Microsoft website...Has a decent example program attached. http://support.microsoft.com/default.aspx?scid=kb;EN-US;252317 Be careful with the implementation of rowlevel...
  7. Miners47

    Row Level Locking

    Background I have a table (Table_Keys) that contains the next unique key to use for certain tables. I am developing an application for a mutli-user environment and there is a high level of probability that this table will get accessed several times (1000's of times) throughout the day. I have...
  8. Miners47

    Form Show Question

    Thanks for the info...The SetWindowPos API was exactly was I was looking for. I appreciate the help.
  9. Miners47

    Form Show Question

    I am getting back in to some VB programming after an extended hiatus. I have an event programmed on Form A. When a specific criteria is met within this event, I need to fire off Form B (formb.show). No big deal. I need to make Form B over take all other active windows (Enen if they leave the...
  10. Miners47

    System Time

    Does anyone have any example code or know how to set a label/text box in MS Access to contain the system time. I know that I can call the Now() function, but I actually want to show the time ticking away on a form for the users. Any help on this issue would be greatly appreciated. BC
  11. Miners47

    Access Denied when installing printer drivers

    I have a Toshiba Tecra 8100 with Windows 2000 installed. I am trying to install a network printer, HP 4000 TN and an HP 8100. When Windows 2K begins installing the drivers it starts out fine, and just before the end of the process it pops up an error message saying: Error installing drivers...
  12. Miners47

    IIf Statement problem.

    This is assuming that you are grouping on your user ID's: Escrow = IIf(Sum([Gross])<=500, &quot;50&quot;, IIf(Sum([Gross]>=500, Sum([Gross])*0.1, IIf((Sum[Gross]*0.1)>= 1250, &quot;1250&quot;))) I think that this will fix your problem.

Part and Inventory Search

Back
Top