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 Wanet Telecoms Ltd 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: zaq888
  • Content: Threads
  • Order by date
  1. zaq888

    I'm Newbie in C

    Alooo Guys... i'm beginner in c programming. How c can reads sequence of digit from keyboard using scanf() then print them until standart output in words... eg: input from keyboard : 123 then printf output one,two,three please help.... I'm Keep Studying.... please show the way... Not Good...
  2. zaq888

    How to catch certain word from sentence..

    hi, i'm newbie in vb... i have a sentence in a txtbox... e.g: C:\temp\newfolder\ex030303.log so, how can i catch up the word starting ex030303 and diplays the result at label1.text? the txtbox is consider as the file location. i just want to displays the filename.. n not the exaccally...
  3. zaq888

    SQL Problem.. i'm Newbie......

    Hi guys.. i have code one query to know wether the user logged in or not during certain date. SELECT TUnit.[cs-username] FROM TUnit LEFT JOIN [SELECT * FROM Tdata WHERE Tdata.date BETWEEN ? AND ?]. AS MyTempTbl ON TUnit.[cs-username] = MyTempTbl.[cs-username] WHERE (((MyTempTbl.[cs-username])...
  4. zaq888

    I have query and I want to just pul

    I have query and I want to just pull records from a certain month. I want to run the query once a month and have the user select the month and year from the combo box in the parameter (the month that just ended usually) Does anyone know how to do this without going into design view and using...
  5. zaq888

    How To Calculate Working Days

    Hi guys.... i have problem on How To Calculate Working Days excluding sunday. Here in my place, Sunday is Weekdays(holiday). My Q is how can i calculate wether abc(user) not login to the system during the 3 consecutive days? e.g if abc did not log on 20 june 2003,(friday), then he not log in...
  6. zaq888

    What means by << ?

    start = (message[START] << 8) + message[START +1]; what is the &quot;<<&quot; symbol means? I'm Keep Studying.... please show the way... Not Good in English
  7. zaq888

    Month picker....

    i have a date picker... but the date picker only catch the date value.. how can i make a combo box that contain all month displays in it? I'm Keep Studying.... please show the way... Not Good in English
  8. zaq888

    How to Convert Date 5/6/2003

    How can i convert 5/6/2003 to 6 MAY 2003 format? I'm Keep Studying.... please show the way... Not Good in English
  9. zaq888

    Export FORM to html

    can form be exported n save as html document? I'm Keep Studying.... please show the way... Not Good in English
  10. zaq888

    Hi All, Does anyone know how I c

    Hi All, Does anyone know how I can pass a SQL statement as a parameter into the Crystal Report Designer from my source code. the SQL statement is: SELECT TUnit.[cs-username] FROM TUnit LEFT JOIN [SELECT * FROM Tdata WHERE Tdata.date BETWEEN ? AND ?]. AS MyTempTbl ON TUnit.[cs-username] =...
  11. zaq888

    Display query in ListBox

    i have create sql command in dataenvironment... it need to pass the date value. theproblem is, how can i displays all the data in datalist box? i have make the rowsource,rowmember,n listfield. but it shows all the data without having any sql generated.. here is code: Private Sub...
  12. zaq888

    How to filter data into years....

    i have a TData table 4 input data from a log file. how can i filter it up n if the date 03/03/03 means year 2003, the data will be also stored on the T2003 table. N if data belongs to the year 2003 it will go to the T2002, and also the TData this is the code that i used to enter data to TData...
  13. zaq888

    How To join 2 Queries??

    This is the first one.. SELECT TUnit.[cs-username] FROM TUnit LEFT JOIN [SELECT * FROM Tdata WHERE Tdata.date BETWEEN ? AND ?]. AS MyTempTbl ON TUnit.[cs-username] = MyTempTbl.[cs-username] WHERE (((MyTempTbl.[cs-username]) Is Null)) ORDER BY Tunit.[cs-username]; N this is the second one ...
  14. zaq888

    DISPLAY DATA AT DATALIST BOX

    i have create sql command in dataenvironment... it need to pass the date value. I HAVE MADE IT. theproblem is, how can i displays all the data in datalist box? i have make the rowsource,rowmember,n listfield. but it shows all the data without having any sql generated.. here is code: Private Sub...
  15. zaq888

    Why data not displays

    SELECT TUnit.[cs-username] FROM TUnit LEFT JOIN TData ON TUnit.[cs-username]=TData.[cs-username] WHERE TData.[date] BETWEEN ? AND ? AND TData.[cs-username] Is Null; Why data not displays
  16. zaq888

    Edit SQL, Help Needed!!!!!

    i'm using dataenvironment from vb to generate the sql query. my problem is i'm passing a date value from the datepicker.value and send it to the sql. SELECT date, time FROM TData WHERE (date BETWEEN ? AND ?) ORDER BY date ? will read data from start.value and end.value(datepicker) this is one...
  17. zaq888

    i'm A Newbie in SQL

    i'm using dataenvironment from vb to generate the sql query. my problem is i'm passing a date value from the datepicker.value and send it to the sql. SELECT date, time FROM TData WHERE (date BETWEEN ? AND ?) ORDER BY date ? will read data from start.value and end.value(datepicker) this is one...

Part and Inventory Search

Back
Top