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 strongm 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. dogs4me

    the "forward" keyword

    A forward declaration is where you're saying the details/definition of an object (for example the body of a function) will be defined later but it's existence has to be declared earlier so it can be used and still keep the compiler happy. In more technical oo terms, you would use forward...
  2. dogs4me

    Using vb dll in PB 6.5

    The only way I was able to use a function in a VB dll was to create an oleobject. I declared a global variable go_object of type n_oo (I'm using the PFC). Then in my code I instantiate the ole object, connect to it using ConnetToNewObject and call the function: go_oleobject = CREATE n_oo...
  3. dogs4me

    Date Issues - any assistance is appreciated

    If you want to make sure your validation always occurs, you might want to consider putting the validation in a c function. Then you can call call the function from both itemchanged and before the data is saved. That way if the user enters data and goes directly to the save icon (for example)...
  4. dogs4me

    Ability to copy retrieved rows from Datawindow

    You have a number of options depending on where/how your random number generator is called and whether the user is going to select one/more number and press copy or just wants the number(s) to automatically appear in the new window. The easiest approach is probably to just pass the datawindow...

Part and Inventory Search

Back
Top