Thread: [Solved] Data Input Form question
View Single Post
 
Old 03-29-2017, 05:05 PM
Cyberseeker Cyberseeker is offline Windows 10 Office 2010 32bit
Advanced Beginner
 
Join Date: Jun 2016
Posts: 44
Cyberseeker is on a distinguished road
Default

Ive found a short macro that looks like it might be related.

Code:
Sub OpenHarvestForm()
 
 Application.WindowState = xlMinimized
 frmHarvest.Show
 Application.WindowState = xlMaximized
 ActiveWorkbook.Sheets("GrpRecords").Activate
 
End Sub
I think what I may be looking for is what is called here, "frmHarvest"

But where would I find it?
Reply With Quote