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 Mike Lewis 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. adamcbest

    VB.NET WinForms MultiTouch

    Perhaps this might be shooting for the moon, but i'll try anyway.. I have a program that's already written in VB.NET WinForms to which we are adding an on-screen keyboard with only very basic keys. so far all is good, but we are running into issues with someone touching a key not quite lifting...
  2. adamcbest

    Datagrid Adding Blank Line Automatically

    We have a datagrid on a form that is bound to a physical ADODC control at run time. This works fine except for one issue. When the form loads, and there is are no records in the grid, the datagrid is automatically being populated with a blank line. If you try to click out of that record...
  3. adamcbest

    Drag and Drop File to Access Form to retrieve file's path.. possible?

    i can already clikc a button to open up a dialog to browse to the file. but it has been requested that i see if there is some way to be able to drag the file in. here is another example say there is an email that has a pdf attachment we want to save and keep record of the path. I want to be...
  4. adamcbest

    Drag and Drop File to Access Form to retrieve file's path.. possible?

    Here is the idea i'm trying to accomplish. i want to have a form with some sort of control that i can drag a file from say the desktop or another folder. when i drop the file on that control (textbox, whatever) it returns the full path of that file, so that i may manipulate in access. an...
  5. adamcbest

    calling a Sub routine based on a variable

    thats what i tried first also, but using a string variable gives me an "expected sub,function, or something else" error. i will play more with the application.run, but it's giving me "can't find procedure" error, even when typing it in exactly including case sensitivity. probably i'll stick to...
  6. adamcbest

    calling a Sub routine based on a variable

    i thought about using case statements, but i didn't was my case statement to be super long, becuase there will be a lot of sub routines to it. however. i guess if i have to write that many subs writing a long case statement isn't really that much more of an issue. thats' what i'll do and yes...
  7. adamcbest

    calling a Sub routine based on a variable

    I want select a sub routine based on the name of the sub routine that is given. it may be hard to explain what i mean so i'll write the code out demonstrating the concept i'm trying: ------------------------------------------------- Private Sub SelectSub_Click() Dim selectedSub as...
  8. adamcbest

    Calendar Control (Show items in the calendar)

    ok from what i read from that post, you can type notes and such in, but will the one you supply allow you to have a control source of records in a database with say due dates. say i had a form that allowed you to input a new assignment, instructions about the assignment, assigned date, due...
  9. adamcbest

    Calendar Control (Show items in the calendar)

    I have used the ActiveX Calendar Control in access to do queries based on the date chosen and display results in text boxes, list boxes, etc. BUT. is there any calendar control that will allow the events for a particular day to show actually within the date box on the calendar? much like if...
  10. adamcbest

    A Copied form using the original's code behind module!?!?!

    well it first got hung up on a dcount() function i had in frm1's form load event. for the sake of testing i put a "msgbox 'test'" in above that to see if frm2 would call that when i loaded it and it does. so it appears it's calling the whole module. There are a couple global variables that...
  11. adamcbest

    A Copied form using the original's code behind module!?!?!

    yes.. i have changed the code. say i had frm1 and i copied it and named it frm2 and did the mods to frm2's code behind. when i switch to normal view from design view of frm2 i get run time errors becuase frm2 has differnt controls, then if i hit debug, it brings up frm1's code behind with the...
  12. adamcbest

    A Copied form using the original's code behind module!?!?!

    Ok. This is strange. i started with large form that i wanted to copy and make few changes to, but otherwise the form is the same. the first form worked fine, but when the copied one runs the form load event, it first pulls the module that is associated with the original. Any idea why a...
  13. adamcbest

    Form? - gettings information from records ahead and behind current

    cool.. didn't know about recordsetclone object. i'll give that a shot. thanks man
  14. adamcbest

    Form? - gettings information from records ahead and behind current

    i have time sheets for employees. that show there time for the day and all their times for a pay period. the form is rather large. I want to have nav buttons at the bottom that shows the current employee i'm on plus the ones ahead and behind. probably i will forget this idea and simply add a...
  15. adamcbest

    Form? - gettings information from records ahead and behind current

    i have a form that displays an employee name of the recordsource bound to the form. is there a way either with expressions or vba code to pull the employee name form the record that is one, two ahead of the current record and one, two behind the current record. basically so i can see the...
  16. adamcbest

    Time based events in Access on hidden form

    ok guys.. i think i got it. for some reason when you opened a form hidden in a "Form Load" event, it would show in the start bar. If i did a splash screen that opened and ran the code to open the hidden form after a second of being open, then it didn't show. Very strange, but oh well. Thanks...
  17. adamcbest

    Time based events in Access on hidden form

    ok now i put another docmd.openform "test",,,,,achidden in the same place where i have the one that opens the form to perform time events. Now form "Test" does show up in the start bar, but it didn't when I added the button that just opened the test form. I have a splash form that runs code...
  18. adamcbest

    Time based events in Access on hidden form

    ok i just create a random button on one of my working forms that opens a form called "test" that is a totally blank form and has no events attached. This form opens hidden and does not show in the start bar. So i'm guessing that my time based event form has a property or one of the events is...
  19. adamcbest

    Time based events in Access on hidden form

    You know. I thought i had it working where the hidden forms wouldn't show. I was like 99% sure it didn't show in the start bar. However, the next day after i was sure of that, it started showing up. Then I started questioning whether or not it actually ever did hide it. As of now it still...
  20. adamcbest

    Time based events in Access on hidden form

    no way to just make the one form not show up rather than all forms??

Part and Inventory Search

Back
Top