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. irishvber

    ps -ef and awk

    - efotime whats that I resolved this by: DBST=`ps -ef|grep DBPROCESS|grep $OSID|awk '{print $5}'|cut -c1` if [ `echo $DBST|grep ^[0-9]` ]; then ps -ef|grep $DBPROCESS|grep $OSID|awk '{print $5}' else ps -ef|grep $DBPROCESS|grep $OSID|awk '{print $5 $6}' fi }
  2. irishvber

    ps -ef and awk

    I am trying to retrieve the time a which a certain process is starting. SO I do ps -ef | grep nameofprocess | awk field I need The field I need is $5 the time field. However for processes running more than 24 hours it just gives me the date in "Jun 21" format otherwise it gives me the exact...
  3. irishvber

    help Creating reports

    how do i bind the textboxes on the report to the using the datafield? when i go to the list of properties for the textbox and click on the datafield property there is nothing there to select. what do i do?
  4. irishvber

    help Creating reports

    Private Sub cmdShowReport_Click() Dim cn_ForReport As ADODB.Connection Dim rs_ForReport As ADODB.Recordset Dim strSQL As String Set cn_ForReport = New ADODB.Connection cn_ForReport.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data...
  5. irishvber

    help Creating reports

    can anyone provide an example as specified above?
  6. irishvber

    help Creating reports

    I was using the data environment but recently found out you cany use variables in the sql there. All I am looking for is a basic example using DAO to retrieve a report based on a sql statement with variables in it i.e open a recordset then open a report on this recordset i just can work out...
  7. irishvber

    help Creating reports

    Pgk that did not work I am lost! What are the steps i should take. What I do is add an data enviroment from the menu. Then I look at the properties establish a connection. Test t. The on the properties interface i choose the SQL option button and write in the sql above. Should i have the sql...
  8. irishvber

    help Creating reports

    I am a beginner so bare with me please... I am having trouble creating reports based on user entered data. I have a database table made up of alot of fields one in particular is a unique sheet number. I want to be able to allow the user to retrieve a report from the database (which is an...

Part and Inventory Search

Back
Top