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

    read/write ini file without API

    dear all, in VB 6 we can read/write to .ini file using GetPrivateProfile.. function, I know i can do the same way in .Net but i want to avoid using Win32 API as much as i can and using .Net framework only. Anybody knows how to do that? thx
  2. oneshadow

    Store.exe consume too much resources

    My office has Exchange 5.5 server on NT 4.0 SP 6.0. Everything runs well until this morning when i found that the server runs sooooo slow, even for displaying NT explorer window. When i checked on Task Manager, i found that almost (99%) of processor resources was consumed by Store.exe. what is...
  3. oneshadow

    select multi files in Common Dialog

    How to select multi files in a CommonDialog1.ShowOpen? by default, we only can select one file at a time. I wonder if there is a way to select 2 or more files. U know, things just like we did in Winamp thnks.
  4. oneshadow

    can not resolve symbol

    Hi all, I wonder, what's the meaning of error msg "can not resolve symbol"? I got it when try to compile a java class. And where I can find references about errors and their meaning? thanks
  5. oneshadow

    process status in sp_who

    if we run sp_who from Query Analyzer, we can see current process ID and their status. Can somebody tell me what's the meaning of : 1. sleeping 2. AWAITING COMMAND ? I've been search for MSDN with no luck. thanks in advance
  6. oneshadow

    Excel - Detect type of object on UserForm

    I have 2 textboxes and 1 combo on a form and I would like to loop for every object on form. If it is a textbox then I will do something. In VB it will be like: Dim obj As Object For Each obj in Form1 If TypeOf obj Is TextBox Then '... End If Next In VBA, TypeOf method returns...
  7. oneshadow

    Print sub report

    Using Crystal Report 8.0, RDC method. I'm using CRViewer component to display report. It can show the sub report correctly but everytime user click the Print Button, it always print the main report. I read on Help that we can't print/export a sub report, but I hope somehow there's a way to deal...
  8. oneshadow

    2 BeginTrans at the same time

    Hi, Using VB 6, SQL Server 7.0 (no SP), ADO 2.5 I need to update into 2 databases : DB_1 and DB_2. Coz this process is critical, I used the Transaction method. The code goes like below : 'Begin transaction DB_1.BeginTrans DB_2.BeginTrans 'processing something... 'See if everything is OK If...
  9. oneshadow

    Print file from VB

    Hi all, this may sound a simple question, but.. how to print a file from VB? Suppose I have a txt/doc file. How can I tell printer to print this file? Common Dialog Control.ShowPrinter does not send data to printer. We still have to code it manually. Are there any API function to handle...
  10. oneshadow

    A Good C++ Tutorial

    Hi all, I'm want to make a simple app with C++/VC++. This program will open an INI file, read some information and display it on screen. It will run on DOS mode. But I'm lack of C++ knowledge so can someone point me to any good C++ tutorial site? Thanks.
  11. oneshadow

    Accessing Database in VFP

    Hi all, I'm wondering, if I have SQL Server 7.0 as my database, and I want to access it with an VFP app : 1. Do I have to use ODBC? 2. Can it be done without ODBC? 3. Can I use ADO in VFP? Thanks in advance.
  12. oneshadow

    Early vs Late bind. What do you think?

    Hi all I found an article in MSDN (it may be a little late now since that article was released on March 30, 1999) about Bind vs Unbind to ADO reference. On an early bound, usually people go to Project References and select the ADO library, and on code, they type : Dim adoConn1 As...
  13. oneshadow

    database back up

    Does anyone know how to make a back up data (eg. pubs database) and I mean only its data, not including users or roles. I'm using SQL Server 7.0 SP2. Thanks in advance.
  14. oneshadow

    Explorer.exe error in Win98

    Dear guys, When I start my PC, it shows an error msg while opening Windows : "Explorer.exe cause an invalid page fault... Registry key..." Then Windows goes freeze and there's nothing I can do except push the reset button. I try in Safe Mode but it's not help. The PC runs properly...
  15. oneshadow

    Hi, If I want to know which user has login onto SQL Server a week ago

    Hi,<br>If I want to know which user has login onto SQL Server a week ago and what was he doing in Northwind database, how would I do that?<br><br>Thanks.

Part and Inventory Search

Back
Top