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 bkrike 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: jxxnorth
  • Content: Threads
  • Order by date
  1. jxxnorth

    built in date function

    After switching from win98 to xp, the built in Date() function seems to not be working. As an example, I use Date() as the control source for a text box on a form. After changing to xp, the text box displays #Name rather than today's date. Also, =Date() is used in an update query. Now when I run...
  2. jxxnorth

    visual studio 6.0 problems

    I just did a standard visual studio 6.0 intall on a new dell laptop running xp home. I'm migrating from win 98. I'm having 2 problems so far. I was using C/C++ IDE with the make file project option to cross compile with gcc. Now, when I open the project, the rebuild button on the tool bar is...
  3. jxxnorth

    passing refs for 2D arrays

    What is the correct way to pass a 2d array by ref to a function. This is what I've tried... void foo (int** array); // or void foo (int*[] array); ?? int main(){ int array[10][10]; foo(array); } void foo(int** array){ array[0][0] = 1; }
  4. jxxnorth

    Instanciating client-side OLE DB

    An employee of my company had previously been using an access data page I created to give her access to a table/query in the company database. The database resides on a server, and her access was via the server's hard disk and Explorer. The last time she logged on, she got a dialog with the...
  5. jxxnorth

    refreshing a form

    I want to refresh a form based on a single query, every time the form's window is brought to the front, or in other words receives focus. According to MS Help, I can't do this with Got Focus event if the form contains other objects that also have a Got focus event. I'm using ALT+TAB frequently...

Part and Inventory Search

Back
Top