Search results

  1. T

    Embedded/nested? Variable

    This is pretyy much the perfect solution that i needed. Thanks alot Andyman! The registry function is also very usefull, but in my case i do not have write permission on the registry. But indeed a good thing to remember for the future! Case closed I guess!
  2. 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...
  3. 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??
  4. T

    resizing a picture

    No, I mean, really resize the picture. Resizing the actual size of the image. Not just how big access has to show the picture, but like if I have a really huge picture, that it wil be resized to 150x150 so that its only 20KB.
  5. T

    resizing a picture

    Does there exist code to resize a picture, that could be any size, to the size of 150x150.
  6. 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...
  7. T

    saving OLE-objects!!

    Ok, that just sucks.. But thanks anyway! Think I'm going to check out 2007
  8. T

    saving OLE-objects!!

    Well, what I want to make is a continous form where I can view all my pictures that are in a folder. But, the program also has to put the pictures, form in the folder, into the table, so also into the OLE column. How can I make this?
  9. 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...
  10. T

    tab paging issue

    never mind :D.. I got it with the .value of the tabcontrol..
  11. 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...
  12. 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.
  13. T

    variable controls???? HELP

    thanks RoyVidar, the code works perfect. It was all in the me.controls(***)
  14. 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...
  15. 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...
  16. T

    making header and footer with code

    no, but i'm making an SQL generator and my goal is that i can click 1 button an that access makes me a search form of the recordsource i filled in. so if i click the button, he makes a new form, puts buttons on it where he puts also code behind and theres where i need the header and footer...
  17. T

    making header and footer with code

    that i do know, but i want to create it in another form. example: form1 --> button1_click() and then he has to create a header and a footer in form 2
  18. 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??
  19. 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?
  20. 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...
Back
Top Bottom