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: rmnastor
  • Order by date
  1. rmnastor

    Advice on building a table

    normalization is a good thing but sometimes there are instances where hibrids of DBMS models is more appropriate... especially when speed has to be considered...
  2. rmnastor

    Finding all fields with "enter" as their value

    sorry dennis but mike's problem was particular with MSSQLSERVER... so its safe to assume that his workstation is a WINDOWS BASED MACHINE... but if so either char(13) + char(10) or char(10) + char(13) or char(13) or char(10) :)
  3. rmnastor

    Copying fields to another table

    why can't u just relate them on the BADGE field
  4. rmnastor

    write confict

    >>>> When I add a field to the main client table and relink the table in access it does not let me change information in the client record pls specify your actual process show codes if possible... -AKIRA
  5. rmnastor

    DoEvents command

    sory 4 my preious post... dim gcancel as boolean Private Sub cmdCancel_Click() gcancel = true End Sub private sub pProcess gCancel = false while not gCancel ' processsssssss wend if gCancel then msgbox "PROCESS CANCELLED!" end sub WALA :)
  6. rmnastor

    Cursor location to use

    developer, try to change ur connection's command time out property maybe a little higher or 0 Added information you may consider: Server Side cursor are faster on execution Client Side takes longer and sometimes causes timeout Hope this helps! [*STAR ME PLEASE]
  7. rmnastor

    Run program in a password protected network directory

    WAYTECH, let us make it simpler... have u tried using NET command net use \\server\sharedfolder [drive] [password] /USER:[username] you can put it on ur machines startup or you may use shell command on ur VB application... hope this helps! here is the rest of the paramenters NET USE...
  8. rmnastor

    Reporting in VB6

    imformation that can be shown on the data report will depend on the records coming from it's datasource... you can do ur filtering on ur recordset b4 you bind it the datareport.. EG STEP 1 RS.FILTER = [your filter] or RS.OPEN "select * from where [your filter]" STEP 2 set...
  9. rmnastor

    Format

    very good!
  10. rmnastor

    DoEvents command

    try it this way While Not .EOF ProgressBar.Max = .RecordCount ProgressBar.Value = .AbsolutePosition frmPrintQRPage2.StatusBar1.SimpleText = "Printing QR, Pls wait... | " & .AbsolutePosition & " of " & .RecordCount DoEvents...
  11. rmnastor

    Help returning data back to VB from a stored procedure

    try to change the SP returned value use CAST or CONVERT ..or.. do some casting on your code be creative man
  12. rmnastor

    How to unload a form (not just hiding)

    add this Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) 'release variables/objects 'most especially connections and recordsets and the like 'set variable = NOTHING End Sub this may seem an added burden but i tell this would be very beneficial especially when u...
  13. rmnastor

    How to print a file without opening it?

    any file can't be printed w/out opening it... simple reading of a file is actually opening it on a readonly mode :) Pls be specific with ur requirement/need and define also the purpose on why....
  14. rmnastor

    Minimize Button

    that's easy :)
  15. rmnastor

    Run program in a password protected network directory

    this is not actually vb related... i haven't use 98 machines for a while i think it's just a matter of configuring ur server with the right account configuration/rights with the account being used by the win98 machines... e.g. SERVER (NT and above) 1. create user USERID: A PASSWORD: B...
  16. rmnastor

    Highlight last added row datagrid

    use Me.DataGrid1.SelBookmarks.Add [bookmark] gudluk the rest of the coding ill leave it to u... *PLS
  17. rmnastor

    Editable Combo box.

    it simple u... u create ur combo box either u bind it with a recordset or fill it with ur code keep the combobox's style property to dropdowncombo the trap the change event the do a a search algoritmm/code change the index property based on ur search WALA the coding part ill leave to u for...
  18. rmnastor

    add zero amts to null datareport fields

    that's is nice, i hope i was of some help... feel free to email me if u need more help...
  19. rmnastor

    NULL character ?

    goto dos prompt eg. c:\>copy con null.txt [press alt+256]^Z
  20. rmnastor

    is there a way to know when was last access to a table??

    you may consider using triggers -AKIRA

Part and Inventory Search

Back
Top