Search results

  1. T

    Determine selected item in ComboBox

    Hi Arain, thanks for replying but this thread is 3 years old I no longer work with access Maybe it will help someone else;)
  2. T

    Lebans Convert to PDF and Access 2010

    Super! It finally works as i wanted for a long time now. Chris, thank you so much for returning to this subject and helping me out:)
  3. T

    Lebans Convert to PDF and Access 2010

    Hi Chris, thank you for your detailed response. But Lebans has its own variables for defining pathes, snapshots and what not - strPathandFileName, strPath.. i wonder how do they blend with your variable OutputFile? Do i use both them and yours? And his DoCmd.OutputTo looks like this...
  4. T

    Lebans Convert to PDF and Access 2010

    Hi Chris, I read your post and i have a question regarding what you said here "export the reports to specific folders on our network (with the path coming from a field in one of my tables) and had the labens code setup to do that". I also use Lebans code, and i also need the report to be saved...
  5. T

    Help with building a query

    Trevor and Dave, thank you! I feel really dumb for not thinking about this myself..:o
  6. T

    Help with building a query

    Yes i understand that will be the most logical, but i already use it in some places as it is, and the program is already in production, so i'd rather solve this without creating another table, if it's possible. Can you explain in a little bit more details how to do this?
  7. T

    Help with building a query

    Hello, I need to make a query, which will use one table. This table has a field called "participatedHow", which stands for how did worker participate in a certain event (1 = present, 2 = via telephone, 3 = ..., 4 = ...). The problem is that this field is represented by numbers 1 to 4, but there...
  8. T

    Is there any way to display designed text in access?..

    darbid, :) No can do.. i still need my paycheck:) stopher, if that's the case, then it's really unfortunate that i'm using access 2003..
  9. T

    Is there any way to display designed text in access?..

    Hello, i'm lost. The boss wants to be able to write text and design it as he wishes (bold/colors/different fonts/different sizes/etc). I handled that as follows, every time he wants to write text i create a word document, it's saved and can be viewed at anytime. The problem is, i later have to...
  10. T

    Listbox doesn't requery after adding a new record

    I didn't write it because it has to do with my program specifically, so it wont help anyone i think. Anyway, the listbox is inside frmAssignments, which is the subform of frmEvents. In order for it to display the right assignments, it should get current event number. The problem was with the...
  11. T

    Listbox doesn't requery after adding a new record

    Thanks for your help, but i solved this one
  12. T

    Listbox doesn't requery after adding a new record

    Thanks, but it always have been very difficult for me with these events, i never know when they fire.. I also have reports listbox on the same form, so i've put a breakpoint on the form's after and before update, it never fired. Would appreciate more ideas..
  13. T

    Listbox doesn't requery after adding a new record

    Hi, I have a mainform, and a subform in it. The main form contains current event details. The subform has ListBox control which contains assignments of that event. To add a new assignment, you click on button and another form opens. The thing is, if the listbox already contains some assignments...
  14. T

    Handling multicolumn listbox row source

    This is how my row source looks now that i've inserted your code: SELECT assignHasSubassigns, Iif([AssignType]=1, "Assignment", Iif([AssignType]=2, "Decision", "Text")), assignDueDateNew, assignDueDate, statusName, assignInCharge, assignDescription, assignDateOpen, assignNum, assignRecordId FROM...
  15. T

    Handling multicolumn listbox row source

    vbaInet, about your second suggestion, can you please write a short pseudocode or something? I don't get where would i put an Iif statement inside the SELECT .... , how is it done
  16. T

    Handling multicolumn listbox row source

    vbaInet, your suggestion sounds about right. For some reason i managed to avoid creating this assignTypes table, there wasn't any need in it. I guess i'll have to create it nonetheless. LFC, i don't quite understand which textbox are you referring to, i don't have any textboxes, it was just an...
  17. T

    Handling multicolumn listbox row source

    Hello, i have a multicolumn listbox, and all the fields in the row source are from one table, but one of them is "assignType', a numeric field. It can be 1, 2 or 3. The thing is, i need the listbox to display text based on this numeric value, i.e. 1=assignment, 2=decision, 3=text. In other...
  18. T

    Working with multiple listboxes on one form

    Hi DCrake, I already tried to make something out of this tree thing, but it didn't go so well, so i quit. First of all i need multiple columns, but all i found in the net refered to one-column tree, second of all i need all the nodes to be right aligned, which as i understood is not supported...
  19. T

    Working with multiple listboxes on one form

    Thanks vbaInet, i'll give it a shot.
  20. T

    Working with multiple listboxes on one form

    Hello I have a form (which is a subform) called frmAssignments. In the Form Header there's the "main" listbox, which contains assignments. Each assignment can have a subassignment, so when i click on one that has, another listbox opens (it was defined invisible before the click). In the same...
Back
Top Bottom