Recent content by slackpipe

  1. S

    Simple HTML (I think!!)

    might help first of all, Microsoft generates some UGLY html. but i think i found it. <SCRIPT language=javascript event=onclick for=Command0> try { if (MSODSC.DataPages.Count > 0) if (MSODSC.CurrentSection == null) MSODSC.DataPages(0).Save(); else MSODSC.CurrentSection.DataPage.Save(); } catch...
  2. S

    SubReports Moving Things around

    The address lines are fine. The problem is when more then one record is returned in the subreport it adds an empty line between the two address lines. The Sub-Report is actually "pushing" the fields in the main report down, even though they are side by side.
  3. S

    SubReports Moving Things around

    I'm working on a water usage survey. I have 3 tables. One for Peoples names, address etc (tblInfo), one for well information (depth, quality, etc) (tblRes) and one for municipal water (name of the water company)(tblMun). They are all linked together by an ID number and the original report i...
  4. S

    Update field1 from field2

    Just off the top of my head, instead of setting the value to “=Mid([Pond_ID],1,5)" i would write some vb code to do it. setup an event on your control with soemthing like agreeid.value = mid(pondid.value, 1, 5)
  5. S

    Public and Global Variables

    Public and global Variables That's worked for me before too. But I've tried them in regular modules, i've tried havin them as variables in the form modules that copy from one form to another on open, and then onopen debug statements print the right values, but anytime the form tries to access...
  6. S

    Public and Global Variables

    I am trying to write code that will generate some controls on a form based on information in a table. I've got that part of the code working. I have a main menu form that has a button that opens the form in design view, adds the controls and then opens it for use. My problem is, none of my...
Back
Top Bottom