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

  1. rhinoman

    Web Service W/Attachments Question

    Guys, If you are interested, here is some VB6 code that sends a file to .NET webservice. No MSXML - all hand coded. Graeme Rhinoman Dim serializer As New MSSOAPLib30.SoapSerializer30 Dim Connector As MSSOAPLib30.HttpConnector30 Dim Parser As New MSSOAPLib30.DimeParser30 Dim...
  2. rhinoman

    Web Service W/Attachments Question

    I have been attempting to upload binary files (pdb) from VB6 back to the .NET webservice with not much luck. Am able to download ZIP files without issues. How have you overcome the issue of advising .NET that files are on the way? regards Graeme Anderson
  3. rhinoman

    Crystal Version 5 & XP Problems

    Hi, I have an old application written in VB5 using Crystal V5 and I want to get it to run on XP. The setup program that worked fine in 95' & 98' seems to be missing something or crystal does not work in XP? The application works fine (Uses Ms Access97) but all crystal reports bomb out with...
  4. rhinoman

    Change Session Variable without form submit

    I have a table/grid of customers and super users can select one customer and that will be the default customer used on subsequent pages. Have put the customerId into a session variable via a button submit on repeating rows and retrieved by Querystring.Request(..). Is it possible to store the...
  5. rhinoman

    Same Code Access & SQL Server

    I am writing a VB6 app that will be given away as a demo and will run using MS Ascess Db. Later if client decides to purchase, we will ship out MSDE or SQL Server. My code below works with SQL 2000 but not MS Access 2000, no error is raised but data is not updated either. Must be a simple one...
  6. rhinoman

    Adding Image to ImageList

    I would like to instead of adding a new image from a file (working code example below) add the image from a Resource File in VB6. This will make my app self contained pretty much. Thanks for any tips, Graeme Anderson Const MAX_PATH = 260 Const NIF_ICON = &H2 Const SHGFI_ICON = &H100 Const...
  7. rhinoman

    Encoding and Decoding Procedures

    Try http://www.mindspring.com/~efd/ which offers just what you need and is free I believe. For a small cost you can get the source code. recommended, Graeme Anderson
  8. rhinoman

    Excel Iterating Thru Named Ranges

    Hey, thanks to Logius, I was able to figure it out, simple really. Here is the code: Set nms = ActiveWorkbook.Names For r = 1 To nms.Count Worksheets(Mid(ActiveWorkbook.Names(r).RefersTo, 2, InStr(ActiveWorkbook.Names(r).RefersTo, "!") - 2)).Activate sFieldName =...
  9. rhinoman

    Excel Iterating Thru Named Ranges

    I am attempting to read all named ranges in Excel SS in all Sheets and return the RangeName and the Value in the range but code only works for the selected sheet. This code works but only in the active sheet: Set nms = ActiveWorkbook.Names For r = 1 To nms.Count sFieldName =...
  10. rhinoman

    Connecting to Access and updating a table from Excel

    If you are still looking, this worked for me.. add reference to Dao 3.6 in A2K. Private Sub SendBackValuetoDB() Dim Mydb As DAO.database Dim MyRec As DAO.Recordset Dim MyVal As Variant Dim wrkJet As DAO.Workspace Set wrkJet = CreateWorkspace("&quot...
  11. rhinoman

    Somebody PLEASE Help!!!!

    If the number of records being copied is large then the code method put forward seems Ok if you want feedback on process. A small amount of records certainly use an update query
  12. rhinoman

    Help with a Form

    Sounds like you need to change the form to be a master/detail format. That is each patient detail is at the top and reservation history for that patient is in a grid or separate form below this. You will need to modify the query to only bring back patient details and create a new query to...
  13. rhinoman

    Somebody PLEASE Help!!!!

    Hi, you have not done a couple of things correctly, so here goes - - - ** this is OK Set rstContacts = dbs.OpenRecordset(strQuery, dbOpenDynaset) ** you need to open the tblNew like ** set tblnew =dbs.openrec..., get rid of rstNew altogether With rstContacts ... other stuff left out for...

Part and Inventory Search

Back
Top