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: *

  • Users: NICKYSUWANDI
  • Order by date
  1. NICKYSUWANDI

    Folder and File Security

    ParentA - rule JUMP Sub - Inherit Parent + 6FEET = JUMP 6FEET subsub - inherit Parent + FORWARD = JUMP 6FEET FORWARD Sub : I don't set inherit for ParentA because the user rights is different. My problem is in folder Sub, if i cut move folder from other windows, folder that...
  2. NICKYSUWANDI

    Folder and File Security

    I share my folder in windows 2003 server like below sample: Myserver : DepartmentFolder -> DepProductionFolder -> DepWarehousingFolder note: * DepartmentFolder= everyone(read/list folder) * DepProductionFolder=only dep production(read/list folder)...
  3. NICKYSUWANDI

    Saving to database take a long time

    thanks for you help friends i had test a time to saving 1 record in 1 table, it took 1-2 second. And i check again my code, i think this procedure couse saving time to long (F_Stock1= there 3 table to update in this procedure, and update 1 field each time). <code> 'IclCorpTra1.F_Stock1("-EBQ"...
  4. NICKYSUWANDI

    Saving to database take a long time

    thanks mansii for u advise i trying using you advise, this the result: Test 1 : took 147 second to save 17 record sConn.Open 'mysql connection For i = 0 to 100 mycndbf.open 'dbf connection . mycndbf.close Next i sConn.Close Test 2 : took 123 second to save 17 record sConn.Open...
  5. NICKYSUWANDI

    Saving to database take a long time

    i am using mysql 5 and database dbf (foxpro for windows 2.6), my database in my localhost(P 4 2.4 Ghz, memori 768), there are no relations beetwen database Thanks Nicky
  6. NICKYSUWANDI

    Saving to database take a long time

    This is my sample code *for mysql Dim mycn As New MySqlConnection mycn = iclcorp1.F_con(IclcorpMod.Strsvr, IclcorpMod.strusr, IclcorpMod.strpass, IclcorpMod.StrdbMis) Dim mySQL As String, mycomm As MySqlCommand mySQL = "INSERT INTO trdpiifa...
  7. NICKYSUWANDI

    Saving to database take a long time

    I am using Mysql database and .dbf, when i saving data to the database (mysql and .dbf) it took along time. I need some advise to solve this problem, please help. Thanks Nicky
  8. NICKYSUWANDI

    how to use PrintPreviewDialog ?

    i want to report from text file, theres anyone can help me, how to use PrintPreview Dialog? Thanks Nicky
  9. NICKYSUWANDI

    add null fields

    thanks tEkHEd the rights syntax is : Update isnull(field1) + 1 this is not solve my problem
  10. NICKYSUWANDI

    add null fields

    i am using mysql database, i had trouble when update null fields. Example: mytable: field1 decimal 10 field2 decimal 10 i want to update field1 and field2 using this string command: UPDATE mytable SET field1 = field1 + 1,field2 = field2 + 1 (this command will working if field1 and...
  11. NICKYSUWANDI

    status bar

    thanks, i already add the backcolor, i give a star thanks nicky
  12. NICKYSUWANDI

    status bar

    thanks earthandfire, you had solve my first problem. Thanks Nicky
  13. NICKYSUWANDI

    status bar

    friends, thanks for u suggestion, but this don't solve my problem, just make me headache (i am newbie). can u give detail with sample. And for second question, i need to know the spent time to display the progress bar status (not after the form actived). Thanks Nicky
  14. NICKYSUWANDI

    status bar

    i had problem in mdi form, please someone help me. 1. in my mdi form had statusbar control, when i active my child form and work in childform, i want update some message to statusbar in parent form, how to do that? 2. still in mdi form, ehen i active my child form,theres anybody know...
  15. NICKYSUWANDI

    context menu in toolbar

    thanks a lot Ruffnekk, you solve my problem Thanks Nicky
  16. NICKYSUWANDI

    context menu in toolbar

    hi guys, i had write code to create toolbar with contextmenu inside the toolbar (using coding, toolbar and name reference from my treenode),like this : ------------------- Dim Tnode As TreeNode, intno As Int16 = 0 For Each Tnode In e.Node.Nodes...
  17. NICKYSUWANDI

    clear keyboard buffer

    thanks for u advise chmohan, but i need to run this program in Windows 98. i post my ballontips class, i just need to show this ballontips to users when user pressing F1 (quickly disappear when pressing F1 but this work when using mousehover) Thansk Nicky ---------------------my code Public...
  18. NICKYSUWANDI

    clear keyboard buffer

    YES, balontips =tooltips, just different in the shape
  19. NICKYSUWANDI

    clear keyboard buffer

    i had download procedure to create Balontips, this procedure display finely when using procedure mouse_hover (call balontips from this procedure). i want this balontips actived when user press function key F1. so i call this procedure from Key_down procedure. My problem is when user push F1...
  20. NICKYSUWANDI

    TEXT TO SPEECH TOOL

    thanks NoCoolHandle

Part and Inventory Search

Back
Top