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 TouchToneTommy 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: *

  • Users: SkyHigh
  • Content: Threads
  • Order by date
  1. SkyHigh

    Syntax problem - please help

    Hi Folks There is something wrong in the 2nd last line because of which the insert statement is not coming out right, can someone please help me Thanks my $SQL_Insert ="INSERT INTO summary VALUES ('" . $LastDayOfMonth . "', " . $summrow{'id'} . ',' . $summrow{'alimit'} . ',' ...
  2. SkyHigh

    How to get various dates

    Hi Folks I need some routines to get the following dates from any given day of the month : Last day of the previous month Last day of the month before previous month I am using the following routines which breaks for leap year ($sec,$min,$hour,$mday,$month,$year,$wday,$yday,$isdst) =...
  3. SkyHigh

    VBA routines to create a new access db

    Hi Folks I need VBA code to create a new access database into a given path, give it a name and export a couple table into it from within an access application. Your quick help would be greatly appreciated. Thanks Brenda
  4. SkyHigh

    Importing large amount of data from a remote database into access

    Hi Folks I have to import large amount of data from remote database into local access tables using ADO and DAO via ODBC - the data involves about 2 million rows in one table, if the data is not that large it goes smoothly otherwise it results in out of memory error, is there a more effecient...
  5. SkyHigh

    Please help with the following ADO/DAO routines.

    Hi Folks I am having a problem with the following ADO/DAO routines, if an address field contains double quotes (") it runs into errors, there are single quotes as well in the data I am dealing with, so is there another way with which it would be able to deal with double, single quotes and...
  6. SkyHigh

    Outlook Secrity popup bypass with Redemption

    Hi Folks Has anyone written a code to send emails silently in the background using Redemption utility with outlook express, I need to convert the following routines for Redemption, can someone kindly help me with that. I am using outlook 2002 as client and I am not using MS Exchange Server -...
  7. SkyHigh

    Writing to registry using VBA

    Hi Folks I need some routines in VBA to check if a registry entery exists if not then add it. The registry entries required are as under HKEY_LOCAL_MACHINE/SOFTWARE/PetersSoftware/Button Painter, Install Folder C:/Programme files/Peters Software/Button Painter...
  8. SkyHigh

    encrypt/decrypt data

    Hi Folks Does anyone have some code to encrypt and decrypt data in a particular field of a table. Thanks Brenda
  9. SkyHigh

    Reliable code to create PDFs in Windows XP

    Is there a reliable code to creae access reports in PDF format under windows XP. Thanks much !! Brenda
  10. SkyHigh

    Winzip (wzzip.exe) via access

    Hi Folks I am using the following code to zip up a selected folder but it doesn't work and I get the msg saying the file doesn't exist but it does exist, please help - thanks ---[Code]--- Set objFSO = CreateObject("Scripting.FileSystemObject") sTempZipFolder = "c:\Temp"...
  11. SkyHigh

    Continuous Form as Master

    Hi Folks I remember having seen in samples provided by Microsoft showing Continous form as master with a subfom but don't seem to find one, can someone pls show me how that can be done. Thanks Brenda.
  12. SkyHigh

    How to user format function to get full month name

    Hi subject says it all, I want to get full month name i.e. January instead of just Jan with fist letter being in upper case, out of a given date Can someone please help me. Thanks much Brenda
  13. SkyHigh

    Need help with TreeView

    Hi Folks I have a sample with treeview, which is actually designed to display data from the database, what I want to do is to display folders in the treeview and open selecting a node it should display the files in the listview, the code used in the form is as under, can someone please help me...
  14. SkyHigh

    Please help with listbox

    Hi I am populating names of files in a folder in a listbox, what I need to do is to open the file shown in the listbox column by double-clicking it, the following code doesn't work. Thanks for your help Brenda ---Code--- Private Sub lstFile2_DblClick(Cancel As Integer) On Error GoTo...
  15. SkyHigh

    How to raise custom exceptions

    Hi Folks I would like to know how do raise custom exceptions in VBA and halt execution of any subsequent code. In my case I have various public functions which check for certain information in the database, I am calling these functions from a command button whereever suitable, but what is...
  16. SkyHigh

    How to check if a file already exists

    I am trying the following routines in one of my functions and I get runtime error 424 : If Not Object.FileExists(CurrentProject.path & "\Archives\Reports " & ccmonth & ".mdb") Then fs.copyfile CurrentProject.path & "\" & CurrentProject.name...
  17. SkyHigh

    Is there a generic way of closing opened forms and reports

    Hi Folka Is there a way I can close all opened forms and reports using one command button. Thanks Brenda
  18. SkyHigh

    Export a pivot table to excel

    Hi Folks I have a pivot table form, I need some VBA routins to transfer pivot table on form to excel without actually opening this form i.e. from a command button on another form. Your help is appreciated. Brenda
  19. SkyHigh

    How to copy the existing application and give it a different name

    Hi Folks I have an application that gets new data at the end of every month, what I want to do is to first call some routines to copy the application with a new name ( in other words back it up ) before getting the new data. Can someone please give me some ideas as to how I can do it. Thanks...
  20. SkyHigh

    Excel's 65,536 rows limitation

    Hi Folks Is there a workaround on the subject limit, or how can I direct the output to a new worksheet once it reaches the max rows limit Here's the snippet of the code I am using : *** Set RsrDetail = db.OpenRecordset("SELECT * FROM tblOrderDetails") nbRows =...

Part and Inventory Search

Back
Top