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 IamaSherpa 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: *

  • Users: miketamp
  • Order by date
  1. miketamp

    progressbar as long as the file is being copied

    hi thanks for your reply where exactly do i put that in my code? and how can i display a msgbox after the copy process is completed?
  2. miketamp

    progressbar as long as the file is being copied

    Hi i have a form with a command button "bimport" which on click event copy a file to a specific path.the code for that is: Private Sub bImport_Click() fs.copyfile ([tbFile]), "c:\test\", True DelayTime 4 If fs.FileExists("c:\test\" &...
  3. miketamp

    save file from path

    hi i Have a form with a textbox called "tbFile". that textbox takes file paths as value. also i have a button called "butt1". I want on the "butt1" click , the file which the file path represents on the textbox to save in the path c:\program files\dieta\. the form's name is "input" please help...
  4. miketamp

    double click path to open the file

    i tried with \ too but nothing happened. Can you please help me?
  5. miketamp

    double click path to open the file

    Hi i have a listbox "mylistbox"which takes file names as values.i want when i double click on the listbox, to open the file.As i read in the thread702-336241 i had to make a label called "myhyperlink "and at the double click event of the "mylistbox" i had to enter this code: Private Sub...
  6. miketamp

    How can i save files from file path value?

    hi i Have a form with a textbox called "tbFile". that textbox takes file paths as value. also i have a button called "butt1". I want on the "butt1" click , the file which the file path represents on the textbox to save in the path c:\program files\dieta\ and at the same time to save a hyperlink...
  7. miketamp

    how can i have the msgbox in the right place???

    hi RoyVidar. thanx for your reply the msgbox works if the first line is : If trim$(Ctl6.value & "") = "" Then without "me!" but i still have problem to create the subfolders man & woman any sugestions?? please help....
  8. miketamp

    how can i have the msgbox in the right place???

    HI i have a form which has a textbox "Ctl6" also i have a button "mkdir". I want when the "Ctl6" takes the value and if i press the "mkdir" to create a folder with the value name. and then in the new folder to create two folders every time the folders :"man" and "woman" but when the "Ctl6" is...
  9. miketamp

    how can i create automaticaly folders through access

    anything more helpfull ?????????
  10. miketamp

    how can i create automaticaly folders through access

    hi i have a table called "tbl1" which has a field called "fld1" i have a form called "folders". In a form there is a combo box called "cmb1" which takes values from the "fld1" i want every time that the "cmb1" takes a new value from thw "fld1" that dos not exist, automaticaly create a folder to...
  11. miketamp

    How can i delete records that i don't need throught form

    thanx but i would like all this procedure to be hide. i don't want a confirmation message from access.i want the records to delete imediately.Can you please help me?
  12. miketamp

    How can i delete records that i don't need throught form

    hi i have a table called "tbl1" with 5 fields "one", "two", "three", "four", "five". the fields "one" and "two" are the primary key.the field "one" is autonumber and the field "two" is text. Also i have a form called "form1". I want when i close the form1, the records that have all the fields...
  13. miketamp

    how can i make links between combo's

    Hi there thanks for the answer. i try the way that you sugest but i have exactly the same problem the code works for the ctl1 but not for the ctl3. ican not understand why.can you please help me?
  14. miketamp

    how do i create records that can not be deleted

    Hi it's me again i did this corection to the code tha you give me and working fine: Private Sub Form_Delete(Cancel As Integer) Set rs = CurrentDb.OpenRecordset("dieta_tbl") If rs!protectFlag = True Then MsgBox "You cannot delete this record!", vbExclamation DoCmd.CancelEvent...
  15. miketamp

    how do i create records that can not be deleted

    hi bobstubbs i use the code you sed to me but when i'm trying to delete a record i have a visual basic compile error : "method or data member not found". why is that?
  16. miketamp

    how can i make links between combo's

    hi i have a form called "dieta" which have 5 combo boxes "ctl1" "Ctl2" "Ctl3" "Ctl4" "Ctl5" all of them are not visible exept the ctl1. I want when then "ctl1" takes the value "small" the ctl2 be visible else when the Ctl1 takes the value "big" then Ctl3 be visible and all the others not...
  17. miketamp

    how do i create records that can not be deleted

    propably as i am new in databases.but i didn't find another way to create many combo boxes in a form depented to other combo boxes. because the only way that i find to do that is a "select" comand at the "rowsource" of eatch combobox.So i could make seperate tables for each combo or one table...
  18. miketamp

    how do i create records that can not be deleted

    hi i have a table called "tblone" i would like only the first 20 records to be able not to be deleted by the user.and the rest records behave as normal recods in a normal table. can you please help me? thanx...
  19. miketamp

    combobox dependence of an other combobox

    thanks... i finaly found the answer in my problem!!!
  20. miketamp

    combobox dependence of an other combobox

    hi i have a table called "dieta" which has 3 fields the "food", the "express" and the "kcal".Aslo there is a form called "paragogi" which has 2 comboboxes the first one called "Ctl1" and the other one called "Ctl2"The "Ctl1"combobox is linked to the "food" field and takes the values from there.I...

Part and Inventory Search

Back
Top