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 bkrike 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: mongous
  • Content: Threads
  • Order by date
  1. mongous

    Laptop sees network, can't connect to internet

    Hi, I have 2 desktops connected to the internet via a cable modem. I recently moved them into another room, and my laptop couldn't find the network, plus I couldn't connect with the 'wired' pc's either as long as they were plugged into the router (dlink). So I bought a new wireless router...
  2. mongous

    Help with filtering a form by a combo box

    Hi all I am trying to filter a form using a combo box value. The box contains userids and the idea is for a supervisor to be able to filter the records entered by the employees userid. I have the 'After Update' event property set to a macro which runs a query I built to pull by the value of...
  3. mongous

    Need help binding two tables to a datagrid

    I have a data adapter (asp.net) that pulls two different tables from an Access database: 1. RepData - contains statistical info on cust serv reps 2. Agents - contains names linked by Logid field If I right click on the Data Adapter and choose 'Preview Data' I can see the appropriate data with...
  4. mongous

    binding multiple tables to datagrid

    I have a data adapter that pulls two different tables from an Access database: 1. RepData - contains statistical info on cust serv reps 2. Agents - contains names linked by Logid field If I right click on the Data Adapter and choose 'Preview Data' I can see the appropriate data with the...
  5. mongous

    HOW do I bind two tables to a datagrid???

    I have a data adapter that pulls two different tables from an Access database: 1. RepData - contains statistical info on cust serv reps 2. Agents - contains names linked by Logid field If I right click on the Data Adapter and choose 'Preview Data' I can see the appropriate data with the...
  6. mongous

    How to set visible property based on check box on subform

    I have a tabbed form with a subform on the second tab. I have a label on the first tab (main form) with visible set to false. I want it to show ONLY IF the checkbox on the subform is checked, which will change with each record. I am not sure WHERE to put the code. Form_load? Form_Current...
  7. mongous

    XML Data not loading, works on local machine, not server

    I have a (modest albeit) resume in html format that I am working on, using xml data to load my experience page. It functions beautifully on my local machine, but since I uploaded the files to my home directory at Comcast the XML data is not being loaded. When I try to use the navigation...
  8. mongous

    XML Data won't load. HELP! with html resume

    I have a (modest albeit) resume in html format, using xml data to load my experience page. It functions beautifully on my local machine, but since I uploaded the files to my home directory at Comcast the XML data is not being loaded. When I try to use the navigation buttons to see if it will...
  9. mongous

    Can't edit a Crystal Report in .Net

    I know nothing about Crystal Reports, per se, but am trying to design a custom report based on another pre-built one. I have copied the existing report, and can open it (the rpt file) using the Crystal Reports included in the VS .Net package. My problem: I can't make any changes to the...
  10. mongous

    Need help with calc in module w/variables in different rpts

    I am needing to come up with a percentage calculation. My report pulls the data from one main report and has three nested subreports. The final value will differ, based on one of the variables (referred to as 'Team', but boils down to location) which can be found in one of the subreports...
  11. mongous

    How to set Outlook to BEEP on SYSTEM Speaker???

    Does anyone know how to set the 'new mail alert BEEP' in Outlook 2000, to use the system speaker? I have heard it done on other's machines in my office. We don't have multimedia speakers, and I would love to be able to have a 'beep'!!!
  12. mongous

    Help with Module coding!

    I can't seem to get my code to work. I am trying to attach a procedure ta control on a report. Function Percentage(DCA As Integer, SiteDCA As Integer) Dim Team As String Dim Pct As Integer Team = Reports![rptRepStats_MTDReport]![Team] DCA = Reports![rptRepStats_MTDReport]![DCA] Select...
  13. mongous

    Data Access Page

    I need to make a page for my company's intranet, that allows users to view data contained in an Access 2000 db. I have a report built for this, but most users don't have access, and I thought the Data Access Page could be a way around this. Also this would keep them out of the db itself...
  14. mongous

    How to reference a value in a continous text box?

    I am trying to perform a calculation in a report (Access 2000), in which I need to reference the value in a text box on the corresponding sub-report. The problem is, in the sub, the box repeats five times. I mean the sub-report in design view shows only one text box, but it is continous, so...
  15. mongous

    Can I make a Data Access Page based on an Access Report?

    I need to make a page for my company's intranet, that allows users to view data contained in an Access 2000 db. I have a report built for this, but most users don't have access, and I thought the Data Access Page could be a way around this. Also this would keep them out of the db itself...
  16. mongous

    Can I NOT pass two parameters to OpenReport Method?

    I am trying to pass two variables, but can't seem to get it to work. Code: Private Sub cmdRepStatMtdRptPreview_Click() cboTeams.SetFocus DoCmd.OpenReport "rptRepStats_MTDReport", acViewPreview, , _ "[Team] =...
  17. mongous

    How to sort chronologically

    I am trying to offer users a combo-box to choose a month for which to report data. I use this SQL: SELECT DISTINCT [tblRepData].[Month] FROM tblRepData; This pulls the months, but it sorts them alphabetically in the list. I want them to display in order (Jan,Feb,Mar,etc) Can anyone help...
  18. mongous

    How to detect network id and populate form

    Does anyone know of a way, possibly with javascript to detect a user's network id and look up their email address so as to automatically populate the 'email' field on a form? We have a form that no-one can seem to fill out correctly! Is this possible? Thanks.
  19. mongous

    Total query summing AND multiplying

    I acidentally posted this in the 'forms' section originally... I am trying to create a simple Total query, but it is not only totaling but multiplying by each instance. EX: I have a tblSites with 4 entries: BHM CWA SEA SPK Some sites contains multiple lines of input. (it's a call center and...
  20. mongous

    Total query with multiple instances of criteria

    I am trying to create a simple Total query, but it is not only totaling but multiplying by each instance. EX: I have a tblSites with 4 entries: BHM CWA SEA SPK Some sites contains multiple lines of input. (it's a call center and some sites have more than one phone line(called split). So you...

Part and Inventory Search

Back
Top