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 SkipVought 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. fredka

    Making Fields Read only for certain Users

    Is it possible to make fields read only to certain groups of user? I want to create a simple list for requests. Those that are requesting information from my team would only be able to read a few of the fields. Keep in mind that I do not have access to sharepoint designer. Thanks!!!
  2. fredka

    Access with Sharepoint

    Hi - It has been a while since I have used Access but I know that with Access 2010, I can't use MDE's. I tried to create a simple list in sharepoint to manage report request in our department. I'm finding that I can't really use field level security in sharepoint 2010. I'm wondering if I will...
  3. fredka

    Upgrading from 2003 to 2010

    Hi - We are in the process of upgrading from Access 2003 to Access 2010. I was wondering if there are any major issues that I need to know about before making this change? I have a database with about 12 users.. the database has a lot of coding and macros. The front end is an mde. Any help...
  4. fredka

    Concatenate Names

    I have a table that has a field named GroupNumber. There is an additional field named "funding" I want to create a query that will give me one group number for each row and concatenate all of the "funding" values into one field. For example, the data is: Group Funding 11111 Fully...
  5. fredka

    Draw in email

    Is there a way to draw (either free-form or an object..circle,etc) in an email? We have 8.0... Thanks!!
  6. fredka

    In Report Footer, total only Specific Group

    Sorry.... I guess I am confusing the terminology in my description. However, my conrols are named the same as my fields. For example, I have a field in my query that is named "status"... the text box in the report is also named "status" But I see what you are saying regarding the custom...
  7. fredka

    In Report Footer, total only Specific Group

    I actually just figured this out today. I am not sure if this is the best way to handle it, however, it does work. In the grouping footer (basegroupstatus) I added a field that has the following control source: =iif([basegroupstatus]="basegroup",sum(sumofstartingmembers]) This field is named...
  8. fredka

    In Report Footer, total only Specific Group

    I have a report that has a grouping based on a field named "BaseGroupStatus" The two values in this field are "basegroup" or "currentyearsale" Under the grouping there is another field named status which has a few different values and then I am totalling a field named "sumofstartingmembers"...
  9. fredka

    Creating Table In Vb - how to set field type

    I always learn something from you.... thanks so much PHV .. I really appreciate it !!!! FRed
  10. fredka

    Creating Table In Vb - how to set field type

    I am trying to create a tempoarary table which among other things takes the date that is entered on a form and adds that to the table. The field on the form is a combo box... the problem I am having is the data is not getting passed. When the table is created, it makes this field a binary. I...
  11. fredka

    Modify Field Type in VB

    thanks so much Remou.... I tried that but I had left the ..,30)" at the end. I appreciate it!!! Joe, thanks for the reply. I do realize this. Thanks again!!! Fred
  12. fredka

    Modify Field Type in VB

    I have some code that adds a field to a table. (see below) I am trying to figure out how to make the field an integer. Any help would be greatly appreciated!!! thanks!! Fred Dim db As Database Dim tbl As TableDef Dim fld As DAO.Field Dim finDate As String Dim filename As...
  13. fredka

    Loop through Textboxes in Excel

    I have a sheet with a map on it ... on the map, I have several textboxes that point to values in another sheet. I added a combo box (cbodtapoint) that I want to use to alternate what data displays in the text boxes. I have that part working but after the update, the formatting of the textboxes...
  14. fredka

    Assign Values to Map (wmf file)

    I got it- .... ActiveSheet.Shapes("SussexData").Select Selection.Text = Range("Data!C22").Value Thanks!!!
  15. fredka

    Assign Values to Map (wmf file)

    Hi Glenn - thanks for the help!! The tutorial does not say you can add text.... I have come to the conclusion that what I need to do is just add text boxes that refer to my cells with the data. Can you tell me what the code is to refer to a text box (my textbox is named 'SussexData') in...
  16. fredka

    Assign Values to Map (wmf file)

    Thanks for responding Glenn. Here is the code: For i = 25 To 45 Range("actcounty").Value = Range("Data!C" & i).Value ActiveSheet.Shapes(Range("actcounty").Value).Select Selection.ShapeRange.Fill.ForeColor.RGB = Range(Range("ActCountyCode").Value).Interior.Color...
  17. fredka

    Assign Values to Map (wmf file)

    Forgot to mention that I am talking about excel.
  18. fredka

    Assign Values to Map (wmf file)

    I imported a county map of New Jersey and I am trying to populate the values on the map of each county. I have a listing of countys with a number County Members Atlantic 2179 Bergen 22209 I imported a wmf file and have all the counties named individually on the map. There is a...
  19. fredka

    Unbound Form - sum of field in table

    Thanks so much for the help!!! I am not sure why I did not think that would work since I use dlookup all the time. Thanks again, I appreciate it!!!! Here is what I ended up with: Me.financefilemembers.Value = DSum("[Members]", "FinanceFile") Fred
  20. fredka

    Unbound Form - sum of field in table

    I have an unbound form that I use to run reports. On that form, I have a field named financefilemembers. In this field I want to hold the total number of "members" from a table named tblfinancefile. I thought I could just put this in the open even of the form...

Part and Inventory Search

Back
Top