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. mwn1218

    Spliting One Field into Two

    Thank you so much. It worked great. One last question... do you have any idea why that error would come up?
  2. mwn1218

    Spliting One Field into Two

    I am trying to clean up some data that a client gave us. Right now the Building and Room # are in the same field and I want to split them apart. The Room number always beigns after the first 4 characters. I was trying to write a module to do this automatically. When I run the module I get a...
  3. mwn1218

    To be NULL or Not To be NULL Help!!!!!!!!!

    One thing you can do so it does not return the duploicate ones is: put a text box call txtCount in the detail section and set the control source of it to =1 and set the running sum property to Over Group and visible to false. Then in the on format event of the detail section add Private Sub...
  4. mwn1218

    How to use Selection Sort in an Array of Strings

    So, I have to use a selection sort to sort an array of Strings even though I know this is not the most efficent way and am getting messed up in my coding. The array is coming from a separate class called Bank Account and this is what I have so far: I know how to sort 2 integers, but am totally...
  5. mwn1218

    Display Label for First Record Only

    Thanks for the help. Grandkathy i used your idea If Me.Count >= 1 Then Me.lblEmplooyee.Visible = False End If
  6. mwn1218

    Display Label for First Record Only

    How can I not show a label, except for the first record, in the detail section of a report. The reason I do not move it to lets say the Employee HEader is because management wants the report like this Employee 1 2 3 4 And not like this EMployee 1...
  7. mwn1218

    Passing parameters in Arrays

    Hey, I'm a newbie to java and am getting a syntax error on my passing of the array in the main method. It does not like that I am passing Num3, Num4. Since its an array do I have to pass it a certain way? Any insight would be helpful, Thanks in advance! Here is the coding I have in the...
  8. mwn1218

    OpenArgs to Subreport

    I tired Open Event of rptCertification me.Report.rptCertification!rptProjectSub.Filter = strFilter me.Report.rptCertification!rptProjectSub.FilterOn = True and also Open Event of rptSubProject me.Report.rptProjectSub.Filter = strFilter me.Report.rptProjectSub.FilterOn = True and I get a...
  9. mwn1218

    OpenArgs to Subreport

    Could the problem be that the link between the main report and the sub report is the employee and not the certification. There is a employeecertification table and that is where the sub report is pulling from and the main report is pulling from the employee table. Dont knwo if that could cause...
  10. mwn1218

    OpenArgs to Subreport

    I tried me.rptCertification.OpenArgs (typed in the filter property of the sub report) and all that happened was it came up with a parameter box asking for me.rptCertification.OpenArgs. Does it go in the filter property of the sub report?
  11. mwn1218

    OpenArgs to Subreport

    I have a form where you select multi-certifications of an employee and then run a report to show what they have passed through the use of OpenArgs. That works fine when but the problem I am having is passing the OpenArgs to filter a sub report within the main report. The main report is set up...

Part and Inventory Search

Back
Top