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 SkipVought 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. sduraiappan

    Excel 2013 - Page setup wrong.

    Thanks for the idea. I delete one row after the loop. Works fine.
  2. sduraiappan

    Excel 2013 - Page setup wrong.

    I am using this code in my Vb.Net application to add some empty rows in a worksheet: Dim TPAGECOUNT = WKSHEET.PageSetup.Pages.Count Do While TPAGECOUNT = WKSHEET.PageSetup.Pages.Count WKSHEET.Range("A" & TROW & ":R" & TROW).Rows.Insert(Shift:=EXCEL.XlInsertShiftDirection.xlShiftDown) TROW =...
  3. sduraiappan

    netware 8 gig barrier

    Thanks, I just want to know how u solved the problem. Since I am planning to upgrade my server. Durai.
  4. sduraiappan

    netware 8 gig barrier

    Karmic, Have u run any patches to obtain the 40 GB. Durai.
  5. sduraiappan

    How can I prevent Duplicate Bill No in my app. ?

    rskomal, To store bill no. in .memDBF file is the best way as said by Ian Boys. Durai.
  6. sduraiappan

    How can I prevent Duplicate Bill No in my app. ?

    R u woking in a network environment? Will more than one user try to save data at a time? Durai.
  7. sduraiappan

    Dbedit() can be used to enter/edit records?

    Check the NG help for DBEDIT(). Use the example in it and modify. Durai.
  8. sduraiappan

    Denying Access to Files (Brainstorming)

    You can lock and Unlock the files by opening the files in Binary Mode and change some first two/three byte information. By changing this information, the database cannot be accessed. To access the database you have to restore the old information. These bytes are common to all files and you can...
  9. sduraiappan

    Clipper.5.x/dbase III Combo

    Use DBU and Reindex the appopriate index files. Duraiappan.
  10. sduraiappan

    Clipper Unique Filename

    I think u want to create temporary work files. TEMPPRN := "TEMP"+SUBSTR(TIME(),7,2)+SUBSTR(TIME(),4,2)+".PRN" TEMPDBF := "TEMP"+SUBSTR(TIME(),7,2)+SUBSTR(TIME(),4,2)+".DBF" This is useful to create unique file names in a network environment. S.Durai.
  11. sduraiappan

    How to protect my DBF files.

    Here is a small coding the LOCK/OPEN DBF files in Current Directory. #INCLUDE "FILEIO.CH" DECLARE AFILES[ADIR("*.DBF")] CLEAR SCREEN TFLAG = .T. @5,5 SAY 'OPEN FILES: ' GET TFLAG PICT 'Y' READ IF LASTKEY() = 27 RETURN ENDIF ADIR("*.DBF",AFILES) FOR I= 1 TO...
  12. sduraiappan

    SET INDEX TO ?

    I Think I have not given the coding for what you really want. Here I have shown you the coding, which I use for Packing the Databases with its index files. PROCEDURE PACKDBF() SELE A USE INDEACC SHARED INDEX ON DATABASE TO (TEMPNTX) DO WHILE !EOF() SELE A TDB = A->DATABASE TNTX = '' DO...
  13. sduraiappan

    SET INDEX TO ?

    Here is my coding and the DBF i used is INDEACC.DBF STRUCTURE: DATABASE C 11 INDEXFLD C 40 INDEXFILE C 11 FORCOND C 40 PROCEDURE NDXER PRIVATE NSTART,NEND,NTIME STORE 0 TO RANGE,I NSTART=SECONDS() SELE A USE INDEACC SHARED GO TOP MEN = 5 @11,45,21,72 BOX SPACE(9) @11,45 TO 21,72 DOUBLE...
  14. sduraiappan

    SET INDEX TO ?

    You better have a database having the name of the databases and its related index file names and the index keys and conditions if any. By using a small program u can select the index file names to a string and use SET INDEX TO &cstring I have used this, and if u want i can send u the coding...

Part and Inventory Search

Back
Top