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 TouchToneTommy 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: bernardsylunar
  • Content: Threads
  • Order by date
  1. bernardsylunar

    printer question

    hi there... i am working on a project that always check the status of a printer to get all the jobs sent to the printer. using some API functions the data that i can gather so far are : -Job ID -Printer Name -Machine Name that create job -Print Job Owner's name -Name of document -Name of user...
  2. bernardsylunar

    registering dll problem

    hi! i got the following error when i try to register my dll: Missing entry:DllRegisterServer when i compile my dll. i can call it from my VB application and i have used the functions inside my dll file. pls help... thanks in advance... ynad ---- It is foolish to listen to someone who will...
  3. bernardsylunar

    invalid column in passing parameters into a stored procedure

    hi everyone, i've created a stored procedure: CREATE PROCEDURE GetAllRecords @Tbl nvarchar(256), @Fld nvarchar(256), @FldValue nvarchar(256) AS declare @tsql varchar(100) set @tsql='SELECT * FROM ' + @Tbl + ' where ' + @Fld + ' = ' + @FldValue exec ( @tsql ) GO where @Tbl is for...
  4. bernardsylunar

    dll question

    hi everyone! i just post this question coz maybe someone here knew Visual C++ but i also post it in Visual C++ forum... i'm new to Visual C++ and i try to create my own dll and call it from my Visual Basic 6.0 program. i've created a function IsStringEqual that will check if the two strings...
  5. bernardsylunar

    dll question

    hi everyone! i'm new to Visual C++ and i try to create my own dll and call it from my Visual Basic 6.0 program. i've created a function IsStringEqual that will check if the two strings are equal. here's my code... In Visual C++ int _stdcall IsStringEqual(char string1, char string2, int...
  6. bernardsylunar

    Listview problem

    hi everyone... i'll go straight to the problem. i create a simple intranet e-mail program which we will be using within our company. i am using a listview control to display the message. previously, i used ItemClick procedure to open a certain message. then i added a popup menu so the user...
  7. bernardsylunar

    a question on SQL

    hi i have a question about SQL. i don't know if it's simple or complicated.. my question is : is there a way to view all the database on the SQL SERVER. including the database name, table name and field name. is it possible? thanks in advance ---- ynad

Part and Inventory Search

Back
Top