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!

Recent content by cydud3

  1. cydud3

    Group Policy help

    Try to ping your server from the workstation. I also got that same "does not have RSOP data" error before and it turned out to be a software firewall on the workstation that was blocking out the ICMP packets. If you can ping your server then the problem is different from mine. You can...
  2. cydud3

    Group Policy help

    Make sure outgoing ICMP packets from the workstation to the Active Directory server aren't blocked by some sort of firewall. You can then run "gpresult" on the workstations to see whether the group policy was applied. Whenever you change any GPO, you can also make sure the changes goes into...
  3. cydud3

    Display different html based on week

    I have 4 different html files that I need to display on my website as the index page. I want to cycle through them one each week. So, for this week, from Sunday to Saturday, anybody visiting http://www.mysite.com will see homepage1.html. The next week, they will see homepage2.html...and so...
  4. cydud3

    Sum with Criteria

    Thanks. Now why didn't I think of that? :) I'll try it out right now. 2B||!2B
  5. cydud3

    Sum with Criteria

    I currently have a report with a field "Amount". At the report footer, I'd like to have a sum of the amount but only those that are above a particular number. For example, I only want to sum those above 10,000. So, my report should look like this: AMOUNT 12,000 300 14,000 4,000 9,500 Total...
  6. cydud3

    Calculate All

    Thanks. That seems to have worked. I'm just not that familiar with VB syntax. 2B||!2B
  7. cydud3

    Calculate All

    I somewhat have an idea how to do it...It looks like the following. Private Sub btnCalcAll_Click() Dim Counter As Integer Counter = 0 DoCmd.GoToRecord , , acFirst Do While Counter < 70 CalcAmount_Click DoCmd.GoToRecord , , acNext Counter =...
  8. cydud3

    Calculate All

    I was hoping I can do it as a function because there is already a set process to come up with the source numbers (they are also calculated, not entered manually) and often times the values to be calculated are stored only as value of the form control, not on table. If it comes down to it, I...
  9. cydud3

    Calculate All

    Hi. I have a form with several textboxes containing numbers. I then have another "result" textbox which contains the sum (or other arithmetical functions) of the previous textboxes. I also have a "calculate" button which obviously puts the resulting calculation to the "result" textbox. I...
  10. cydud3

    Help with Combo Box Display

    Boxhead, thanks for your suggestion but on my form, I have around 15-20 similar combo boxes and changing them all would become too complicated. AKMonkeyboy, I set all items to No already but I just thought I'd include the Null just to be more tolerant. Anyway, I think you're right. It will...
  11. cydud3

    Help with Combo Box Display

    barrylowe, limit to list will not work since my bound column is not the same as my displayed column. handsonaccess, thanks for the function suggestion. I'll try it. 2B||!2B
  12. cydud3

    Help with Combo Box Display

    Haven't tried it yet but as I understand it, if you have 10 combo boxes tied to 10 similar tables, you'll have to do this 10 times right? 2B||!2B
  13. cydud3

    Help with Combo Box Display

    Let me get straight to the point. I have a table containing the following fields: ItemId (Autonumber) ItemDescription (Text) Discontinued (Yes/No) As you might have guessed, the discontinued field is just a field that determines whether this particular item can still be used. So, in a form...
  14. cydud3

    Mac RAM on PC?

    There is no difference between the physical size/form of this SODIMM than the ones I currently have. The reason why I chose this RAM was because I found it was the cheapest around compared to the other 1GB PC2100 SODIMM (from the same vendor). So, I guess the cost is reasonable. You did...
  15. cydud3

    Mac RAM on PC?

    Thanks for that info. I was debating whether to return it but that is hard for me to do as I'm currently travelling. I was also trying to google it but I couldn't find anything on the subject. I guess I'll just keep it because it does work fine. However, if the mem does not contain anything...

Part and Inventory Search

Back
Top