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

    Updating windows group policy

    I like to create a vb script that would updates the Local COmputer Policy Computer Configuration Windows settings Scripts Startup with C:\windows\abc.bat, so that i dont have to open gpedit.msc GUI. I googled and i didnt get any relevant answers...
  2. MAK9974

    All DBA's read. worm attack

    Worm attack on SQL Servers 1434 port. Read the links below. http://www.cert.org/advisories/CA-2003-04.html http://www.microsoft.com/security/slammer.asp Solution Standard Hotfix Installation Steps =================================== 1. Install SQL Server 2000 Service Pack 2. Do not proceed...
  3. MAK9974

    Oracle Administration

    Hi Gurus. Is there any article where I can find Step by Step guide for Oracle 8i administration (on Win 2000 Server) I am SQL Server DBA. Now I am going to manage Oracle (on Win 2000) too. Thanks for any input. I appreciate it. -MAK
  4. MAK9974

    ACTIVE/ACTIVE SQL Server 2000 Cluster

    ACTIVE/ACTIVE SQL Server 2000 Cluster This was my plan. Physical box - box1,box2 virtual box - virtual1 i have a active/passive cluster virtual1 (primary node box1, secondary box2) I am creating another virtual box on box2 as primary node by name virtual2) whenever my installation setup...
  5. MAK9974

    RC4 Encrypt and Decrypt

    Hi Guys. I am looking for TSQL code for RC4 encryption and decryption. I found VBcode for RC4 encryption, it will take atleast 2 days for me to go thru that and rewrite the whole code in SQL. If anyone has the code, please provide me. (I know sql does accept extended ASCII characters)...
  6. MAK9974

    Discrepancy in Indexes

    I executed all these three statement first ------------------------------------------ DBCC DBREINDEX (order_detail, '', 80) update statistics order_detail DBCC UPDATEUSAGE ('PCC','order_detail') when i execute sp_space used the results are -------------------------------------------- reserved...
  7. MAK9974

    How to close a cursor?

    Hi guys. is there anyway I can find a cursor that is open so that i can close it? I have a procedure running daily (across servers). that stopped suddenly with this error. A cursor with the name 'xyz' already exists. I tried closing and deallocating on destination server. I am getting the...
  8. MAK9974

    RC4 encryption

    needed sample code for RC4 encryption and decryption. thanks in advance. -MAK
  9. MAK9974

    windows startup

    hi guys. I can I create a shortcut of my application created in VB6 (during setup) to add into windows Startup. Advance thanks. -MAK
  10. MAK9974

    Only one application should run

    Hi guys. I created an application in VB and created executable. If i run one time its showing the form. if i am running another time its showing copy of another form. What i need to do is, no matter how many times the exe is run (without closing the form), i need to run and show only one...
  11. MAK9974

    Transparent form

    hi guys. is there any way i can make my form transparent so that i can see the windows wall paper through the form where there is no controls? -MAK
  12. MAK9974

    Form appearance.

    Hi Guys. How can I display my form with circular edges instead of square edges. what i am trying to do is all my forms should be displayed as a pic of car with no controls on it. please advice -MAK
  13. MAK9974

    How can I create a icon in Taskbar

    Hi Guys. How can I create my VBA , when click on minized will go and reside on the taskbar as small icon (near clock). and when i double click on the small icon it should get restored. I appreciate any sample code. (Eg: yahoo messenger, MSN messenger, WINZIP 8 - all have more or less similar...
  14. MAK9974

    Sample code for Event Viewer

    hi guys. I am looking for code to read the event viewer using API. -MAK
  15. MAK9974

    can i install VB on UNIX machines a

    can i install VB on UNIX machines and create applications? or I need windows station to do that? my question is does VB work on UNIX or any work around? -MAK
  16. MAK9974

    Hi Guys Needed code for standard

    Hi Guys Needed code for standard RC-4 encryption and decryption I have code for encryption. I need code to decrypting 'create a command button(Command1), text box1(Text1), text box2 (Text2) Dim m_RC4_KEY Dim m_SBOX(255) Dim m_KEY(255) Private Sub Command1_Click() Text2.Text =...
  17. MAK9974

    Hi guys. i have a text file like

    Hi guys. i have a text file like this (say 50000 records) eg: "Id = '1' name ='mak' amount = '100'" I need to bring those in to recordset like so that i can scroll thru rec.fields('id') =1 rec.fields('name') ='MAK' rec.fields('amount') =100 I dont have any database or tables in...
  18. MAK9974

    Hi Guys. I am looking for samp

    Hi Guys. I am looking for sample code for creating Extended stored procedure on SQL Server 2000 using Visual Basic 6.0. All I can get is Using VC++ and ODS APIs. There is not enough info available on ODS lib either. Please help. Thanks -MAK
  19. MAK9974

    Update table

    hi Guys. Help me. I have a table A with 3 columns. and another table B with one column. If anybody updates a record in table A, i want the third column value to be updated in table B. Table B always has only one record and only one record will be updated in table A all the time. I need...
  20. MAK9974

    Trigger

    Hi Guys. Like SQL server, Oracle is there any way i can create triggers on access table? If so please tell me how. -MAK

Part and Inventory Search

Back
Top