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 Wanet Telecoms Ltd 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. DSJ1967

    Normalizing record using DTS

    I have an incoming text file that is in the format of CustomerId|Product1 Sales|Product1 Share of Sales|Product2 Sales|Product2 Share of Sales| ... which continues on for about 15 products. The product names are actually in the column names. I need to normalize this into...
  2. DSJ1967

    Automation Error - Third Party Control

    We have recently released a program that invokes a third party control inside of a custom control. The problem is that our client also released an application that used the same 3rd party control with the exception being that is was a slightly newer version. There installation of the 3rd Party...
  3. DSJ1967

    InfoZip DLL Error?

    If someone wants to look at the code, send my your email address and I can send it to you. davidst.john@home.com
  4. DSJ1967

    InfoZip DLL Error?

    Has anyone used the InfoZip DLLs. I have seen a couple of instances around the web and have created an interface in VB which incorporates one of the classes that uses this Zip DLL. My problem is that in some instances I am getting an error "zip warning: name not matched: " yet if I...
  5. DSJ1967

    Speeding up grid loading

    I had a very similar problem and was resigned to the fact that I was not going to load the entire table into the grid. Instead load my record set by 'pages' (i.e) the number of records that are actually visible in the flexgrid. Using the absolute position of the recordset + the number of...
  6. DSJ1967

    DISABLE MOUSE FROM BEING USED IN CERTAIN TEXT BOXES

    Alternativey, there is a MouseDown event on a textbox. Depends on what you want to allow the user to do. If you simply do not want them to use the mouse to ensure that they follow the tab order the mousedown event will capture this. If, on the other hand, you do not want them to be able to...
  7. DSJ1967

    Recordset update problem..

    You can also use the LastModified property of a recordset (DAO) to set the bookmark. i.e. rs.bookmark = rs.lastmodified should work nicely.
  8. DSJ1967

    Search strife..

    When you open your search form, open it modally. On the search form, when the user clicks the list box, transfer the Id of the record which was select to a property on the search form. When the user clicks OK or Cancel, Hide the Search Form which will return you to the calling module. Then...
  9. DSJ1967

    multi-forms problem (not MDI) upon activation

    How about putting a property (boolean flag) OK_To_Run on the form that gets set at form_load and form_close. At the beginning of your activation procedure, check the flag to see if it is true or false
  10. DSJ1967

    Merging to Word and continuing on next page if necessary

    I am trying to merge the contents of a textbox into a Word document. My problem is that I do not want to overflow the page. If the contents of the textbox are larger than the space that I have provided on my Word Doc, I want to either create another page, head it with 'Description Continued'...
  11. DSJ1967

    How can I write to a a disk using put and allign a text

    Micheal,<br><br>Sometimes it is usefull to have a fixed length text file where all the records are consistent in length.&nbsp;&nbsp;The other option would be to have a variable length file but then you would have to have a delimiter at the end of each field.&nbsp;&nbsp;Either way works...
  12. DSJ1967

    How can I write to a a disk using put and allign a text

    Ivax,<br><br>Not sure... tried it at home and it seems to work.&nbsp;&nbsp;Like you, defined a UDT in a module then created a new variable based on the UDT in my form<br><br>ie.<br>Option Explicit<br><br>Public Type client<br>&nbsp;&nbsp;&nbsp;&nbsp;codbar As String *...
  13. DSJ1967

    Startup form as Modal form

    Motto,<br><br>Would it be possible instead of having the form as your startup have a module as the startup instead i.e. Sub Main() in a module.&nbsp;&nbsp;Then in the module, use Login.Show vbmodal ?<br><br>Hope that helps.
  14. DSJ1967

    SetFocus Problems

    Joe,<br><br>First, I don't think that you can setfocus to an object in the form-load if that is what you are trying to do.<br><br>Maybe what you could do is load the form and then wait for the User to click a cell and then using the mouse events and properties, figure out which cell you are...
  15. DSJ1967

    Adding a variable to a string

    Edrest<br><br>You just need to tie the fixed portion of your string and the variable portions together with an '&'<br><br>you should check to make sure that the variable &lt;&gt; &quot;&quot; but none the less should look something like<br><br>myString=&quot;Create Table &quot; & text1.text &...
  16. DSJ1967

    Problems passing arguements

    Catrina<br><br>There are two ways to call a sub/function:<br>1st is to use the word 'Call' and then your sub/function followed by any paramaters enclosed in brackets.<br>2nd is to omit the word 'Call' only using the name of your sub/function followed by your parameters.&nbsp;&nbsp;In this case...
  17. DSJ1967

    Dealing with Memo type Fields

    Anybody had luck in retrieving information from a memo type field and then spliting it into string variables?<br><br>Using GetChunck/AppendChunk... other suggestions<br><br>Thanks
  18. DSJ1967

    Optimization Software

    Does anyone know of an optimization software for VB code that evaluates the amount of time being spent in modules/procedures etc. I have a piece of Code which is running slow and would like to find out where it is being hung up.<br> <br> Any help is appreciated<br>
  19. DSJ1967

    mschart flicker

    Make the visible property to false until you are finished updating the chart
  20. DSJ1967

    Address Cleansing Problem

    mrregan/Alt255<br> <br> Thanks for you input. I was doing some more thinking on this and am thinking about proceeding using bits of both suggestions. I think I need to first sanitize the fields I am going to compare based on a set of rules, thereby getting rid of any potential noise...

Part and Inventory Search

Back
Top