Search results

  1. T

    Embedded/nested? Variable

    Embedded/nested? Variable [Solved] Hi All, Is there some sort of internal variable or table that can be used to store temporary variables? While running code you can obviously store data in variable, but once the code is done, the variable are dumped. So I want to store some variable at some...
  2. T

    Open pictures in access

    hi, I'm looking for some kind of windows explore thing, like something if you click "open.." in paint. so that I can choose a jpeg/png picture to be opened in access and that the link to the picture will be saved in FLDlink. How can you do something like that??
  3. T

    resizing a picture

    Does there exist code to resize a picture, that could be any size, to the size of 150x150.
  4. T

    change the chosen record in a listbox

    Hi all, I have a listbox with a rowsource linked to a table. Table: ID, FLDname, FLDplace( 1,2,3,....) Now, when I choose a record in the listbox, I have 2 buttons. One up, One down. The point is that if I click "UP" that the fldplace changes form 17 to 16 for example, and then requerys...
  5. T

    saving OLE-objects!!

    Hi all, I have made a table like this: TBLpictures ID FLDpath - memo FLDname - text FLDpicture - OLE object now, what I need to do is to make a button that, when I click on it, it looks in a folder "c:\\Pictures" and puts all the pictures into the table. But I'm stuck at the part where I want...
  6. T

    some variables lose thier data?????

    hi all, I have a few forms with general variables, some date, strings, integers and controls. now somewhere in my code thier is a procedure that creates controls in another form and puts code behind them. now the weird thing is, when he runs this piece of code, all my date and control...
  7. T

    tab paging issue

    hi all, I have a tab control with 3 tab pages and a text box outside the tab screen. now when i click on one, i want to get the name of the page that is visible into the text box, but i don't know where i can find wich one is visible. if you know how to trigger this stupid thing plz tell me.
  8. T

    variable controls???? HELP

    ok, is there a was to put into a string or field the name of a control that is on your form, like a label, and then summon that name from the string and set it as a control in your code, like this but then in a way that works: dim str as string private sub button1_click() dim ctl as control...
  9. T

    load tables from different database

    hi, This is the code that i used to get my tablenames into a combobox: Dim STRtables As String Dim obj, obj1 As AccessObject, dbs As Object Set dbs = Application.CurrentData For Each obj In dbs.AllTables If STRtables = "" Then STRtables = obj.Name Else...
  10. T

    making a button with code by clicking a button

    hi all, I know how i can make a button in another form by clicking a button, but now i also want to put code in the other form for if you click that button. example: button1_click() createcontrol "form2", acbutton but now i want to get behind the button i just made, so, how do i do that??
  11. T

    making header and footer with code

    I've made a new form but it also needs to have a header and footer, but I can't find how to do that. Does anyone know how to do that?
  12. T

    create and save a form

    hi all, I want to, if i click a button, that access makes me a new form where i can refer to later on, so I'll have to give it a name or save it. This is what i already have but if you know something else please tell me. dim frm as form Set frm = CreateForm() DoCmd.Save acForm...
  13. T

    create and save form

    hi all, I want to create a new form and also save it by clicking a button but the saving part doesn't work. this is what i have right now. Dim frm As Form Set frm = CreateForm() DoCmd.Restore then he creates a new form. But i need to save it with the same button, anyone know how i can...
  14. T

    first form

    were can you adjust that a form pops up when you open access?
  15. T

    analoge clock

    can you get an analoge clock on a form? if so, how??
Back
Top Bottom