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

    Can color printer work in absence of color toners

    I have an HP3600 Serries color printer, it stops working in absence of any color toner, is there a way to make it work as mono color when black cartridge is full.
  2. jadoogar

    How to know which records are updated from log analysys

    Hello All, I have a SQL database with 50 tables and a web service application running on them where about 10 tables can get data updation through web service application. Is it possible to find out which records from which table are updated in a single day by the web interface from Log...
  3. jadoogar

    IS THERE A PDF CONVERTER FOR VBSCRIPT TO USE IN VB6??

    Private Sub howtoconvertwordtopdf() 'Option Explicit ' Dim myWord As Word.Application ' Dim myDoc As Word.Document ' Dim OriginalPrinter As String ' ' Set myWord = New Word.Application ' ' Set myDoc = myWord.Documents.Open("your_document_name") ' OriginalPrinter =...
  4. jadoogar

    Change Structure to lowercase

    I have created a data base with lot of tables but as now Java is case sensitive I want all the structure to be in lowercase only table name, field name Is there any quick way (programming) to do this? If so please help Thanks in advance
  5. jadoogar

    Access odbc driver not working

    I tried to creat an ODBC in Win XP machine it offers list of drivers like Microsoft Access driver, SQL server etc etc but after clicking microsoft access driver its not responding ie not giving menu to seelct the database I tried both file dsn and user dsn I reinstalled mdac_type also still...
  6. jadoogar

    Pass VB variable to query criteria?

    You construct a string in which the query you want to pass to SQL/Access like this command = "insert into village_facilities values ('" & mdate & "','" & x2 & "','" & x3 & "','" & x4 & "')" where x1, x2 are values to be passed '" & varname & "' will pass a non numeric value where as " &...
  7. jadoogar

    Query works in access but not thru vb6

    I have stored variables from diff text boxes, combos etc to mem variables and made an insert into tablename values (x(1)...,x(n)) but when fired from VB error message "Too few parameters expected 35 is coming " Microsoft ODBC access driver" connectivity is used same time when I copy paste the...
  8. jadoogar

    Calling Crystal report from VB6

    I solved it I put a crystalreport viewer called it CRVreport and added code Declaration Dim crxApp As New CRAXDRT.Application Dim crxRpt As CRAXDRT.Report in option button for report click event added Set crxRpt = crxApp.OpenReport(App.Path & "\nameofreport") showreport Showreport is a module...
  9. jadoogar

    Calling Crystal report from VB6

    I have migrated to Crystal 8.5 from 7.0 I have problem in how to call report developed from VB I put a control called CRVreport which is Crviewer and give code repsource = "c:\powerproject\substation.rpt" CRVReport.ReportSource = App.Path & "substation.rpt" CRVReport.ViewReport Can anyone...
  10. jadoogar

    Only Guest user is coming

    I have changed name of my system to another name and now when others are trying to connect to my system they are getting only guest user privilages and unable to login as Adminisrator or some other existing user But I am able to browse other computers from this system How to remedy this...
  11. jadoogar

    Was is a good scanner that can read text?

    Its not Scanner recognizing text but the softwate comes along with it ABBY FINE READER can read almost 90% of a scanned print material and so far its the best tool I have ever used
  12. jadoogar

    How to speed up search using multiple indexes for same table

    In Foxpro etc we had multiple indexes and filtered indexes for tables and to speed up search we could have used set index to 1 , 2 etc to specify which index is there such an equivalent way in SQL data if so using VB how can we specify which index may be used? any idea I have a table with 7...
  13. jadoogar

    Connection to Server, but no further

    If you change back to win2000 server this problem will be solved Win 2003 unnecessarly hell sort of security and network configurations and TCP ip blocking we gone back to stone age of Win 2000 and solved this problem
  14. jadoogar

    int conversion gives SQL outer join requirement error

    What about Cast(variable name as integer) in query
  15. jadoogar

    Hashing/ encrypted value

    Can some one give me a good encryption algorithm which we have to decrypt using name varchar(6) sex char 1 birthdate date employeecode char(7) timesalaryprocessed to be used to print in an account ledger so that any bogus cheque issued can be checked for verification
  16. jadoogar

    Win2k reinstalled and mails gone!!

    Unfortunately my AMC man installed and copied the application data to some other part and in that no dbx or pst file existing!
  17. jadoogar

    Win2k reinstalled and mails gone!!

    I have reinstalled win 2k and now I am unable to find outlook 6.0 mails earlier recived and stored in folder of outlook how can I restore them kindly help
  18. jadoogar

    Having problems restoring my backup on another server

    try to restore using only the physical file ie first detach db then restore from physical file without the transaction log
  19. jadoogar

    SQL Databases not listed for setting ODBC

    Hi All I have a problem I am having 5 databases in a Server , now after I restored a database which got corrupted all other user created databases are not listed to setup ODBC from the nodes where as they are listed when tried from the server The databases are all ok from server, but from nodes...
  20. jadoogar

    Invoke Crystal report 9 from VB

    I have been using Crystal report 7 in VB for report. Now I have migrated to Crystal report 9 but the earlier code cr.Connect = "dsn=dsname;uid=" & wusn & ";pwd=" & wpwd & ";" cr.ReportFileName = App.Path & "\reportname.rpt" cr.PrintReport cr is Crviewer object is now not working with new cr9...

Part and Inventory Search

Back
Top