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 SkipVought 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. markdenby

    set focus to a text box

    Hi Franco, you do ; Form.Control.Focus() Hope this helps, Mark
  2. markdenby

    Base Table Changed in View: Error

    Hi, You're correct when you say the root of the problem is the select * in the view definition. I would avoid using select * in view definition. I would create the views with a predefined list of fields eg select field1, field2,field2 from table this way when you add field4 to the table your...
  3. markdenby

    Error when trying to insert a value that exceeds field length

    Hi, One disadvantage to inserting and testing for the exeception to be thrown is that it does require a round trip to the server and back. It seems better to catch the condition in a biz type object inform the user without having to go to the server and back.,. I think they are many different...
  4. markdenby

    Passing parameters from a exe or dll file

    "markdenby has already provided the answer" ah but you explained it better Craig... Thanks, Mark
  5. markdenby

    VFP 8.0 Command Question

    Hi I think the ADIR command does what you require and it supports wildcards, it returns the number of matches found and stores further details into an array of you choice. eg ; lnHowManyFiles = ADIR(laMyFileArray,"*.txt") Hope this helps, Mark
  6. markdenby

    Passing parameters from a exe or dll file

    Hi Unless I'm misunderstanding, you're asking how to pass parameters to an exe? if so, here's how you do it. In the main module of your project, add a Parameter statement to the top of the program and build it as an exe ie Parameter cSomeValue if you set up a shortcut to the exe and on...
  7. markdenby

    how to call user define SQL server function?

    Hi You can find samples at http://www.syncfusion.com/faq/winforms/search/1016.asp hope this helps, Mark
  8. markdenby

    Finding and displaying a particular row from the dataset

    Hi when you say you have a primary key set up, have you told the data table what the primary key is ? ie, you specify the primarykey property for the datatable? Dim myColArray(1) As DataColumn myColArray(0) = MyDataTable.Columns("My_Primary_Key_Field") MyDataTable.PrimaryKey =...
  9. markdenby

    How do I detect if a VIEW is present in a database?

    Hi Richard, You can use the INDBC function. E.g. ? INDBC('someview', 'VIEW') Mark

Part and Inventory Search

Back
Top