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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by IcesMaster

  1. IcesMaster

    Question about queries using forms

    I assume you have three checkbox related to 3 fieldnames. You can create query based on the checkboxs like this Dim mSqlText As String mSqlText = "SELECT FieldA, FieldB, FieldC, FieldD FROM TableA WHERE " IF Me.CheckBoxA = False Then mSqlText = mSqlText & "FieldA = "NY&quot...
  2. IcesMaster

    .NET and Access 2000/XP

    I read that Access 2003 is already using vba.net. If I install the tools, is it compatible to My Access XP VBA codes?
  3. IcesMaster

    Run stored procedure

    'This is what I did to Run stored procedure "TEST" 'ALTER PROCEDURE "Test" (@YourName nvarchar(20), @YourPass nvarchar(10)) 'INSERT INTO dbo.UserList (Name, Password) 'SELECT @YourName As Name, @YourPass As Password '----------------------------------------------------------...
  4. IcesMaster

    Run stored procedure

    Sorry. T can't find how to set passrthough in Access project. I need the way to pass parameter in Access project
  5. IcesMaster

    best way to update field in recordset?

    Just make a button and open the click event and try this code: Private Sub buttonX_click() Dim mSql As string sSql = &quot;UPDATE tablename SET columnnametoupdate = columnname1 + columnname2 WHERE columnnametoupdate <> columnname1 + columnname2&quot; DoCmd.RunSql mSql End Sub Is that what you...
  6. IcesMaster

    Faster way to do this query ???

    Why not create function to develop SQL Text and run it as Recourd source, in the form or at other form. It's only create WHERE clause based on the existing value 0f (text/combo)box. Example: Dim SdlA, SqlB As String SqlA = &quot;SELECT Assets.BarcodeNumber, Assets.AssetDescription...
  7. IcesMaster

    Run stored procedure

    With access XP as front end and MSSQL SERVER 2000 As Back End: It not satisfying me using &quot;DoCmd.OpenStoredProcedure&quot; when Executing non-select SQL, and I still questioning the effectiveness of using ADO in VBA. Is somebody know the best way? Thank you
  8. IcesMaster

    How can I hide or minimize access?

    The best way is by creating user's profile in Windows registry setting and set your application to use it. I'll explain later. I had a guess
  9. IcesMaster

    How do I have one database at more than one office

    #1 By making dial-up connection and synchronize it every day when I don't need real time data. #2 By using IIS and Data Access page through internet
  10. IcesMaster

    Secure Reference

    How to include VBA reference when I distribute my Access Project while NOT USING DEPLOYEMENT N DEVELOPER EDITION
  11. IcesMaster

    Sub form in VB6

    Is there any way to create subform under a form like in access by vb?
  12. IcesMaster

    Join 2 stored procedures who has parameter

    Thanks Claire I already found that I made too much parameter so while I create the procedure to joint the functions I made mistake in writing the parameter structure. For Bertrand, here I made the sample of Joining parameter function in stored procedure as I mean Exp. I have two functions...
  13. IcesMaster

    Join 2 stored procedures who has parameter

    I have 2 procedures (functions) each having parameter (@...). How to joint it? Thanks
  14. IcesMaster

    I have two stored procedure. Each h

    I have two stored procedure. Each having parameter (@...) How to join them cause I always find error while trying

Part and Inventory Search

Back
Top