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 SkipVought 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. ts2032

    Hide duplicated records Combo

    You could also order the query by plaats that way all the duplicate plaats would be together. "Select PLAATS, AFKORTING FROM BLAD1 where PLAATS = '"& combo1.text & "' order by PLAATS" then in your do loop check if it is the same PLAATS and if it is ignore it. dim tPlaat as (whatever) If Not...
  2. ts2032

    Region to points

    I am trying to get a set of points for the perimeter of a region or path. ie... geting a set of points for a cirle, or square I can do, but the outline of points for a text path or complex region is what I need... Thanks in advance. ts2032
  3. ts2032

    MDAC 2.6 and SQL7

    Rob, Thanks for your reply. I was able to fix the problem. It seems that the connection string was copy and paste from a command object created with Visual Interdev 1.0. So the commandText property was as follows: cmdTemp.CommandText =...
  4. ts2032

    MDAC 2.6 and SQL7

    We updated our NT server from MDAC 2.5 to MDAC 2.6 sp2 and all of a sudden we started getting errors about not being able to find any stored procedures when run from the web envirionment. When we run these stored procedures from the development environment, or Query Analyzer they run fine. But...
  5. ts2032

    updateAfterEvents()--loadMovie

    No I am reloading it into the same clip. I called the center function on the clips(load) event and it works fine. thanks
  6. ts2032

    updateAfterEvents()--loadMovie

    I have a movie that loads a jpg image into a mc. What I try to do is center the mc depending on the size of the jpg. I have two functions. one called PlayOne and one called PlayTwo. PlayOne loads the JPG and PlayTwo centers the mc. Why did I do it this way? When I tried to center the mc...
  7. ts2032

    Listbox addItem help

    Found the answer about the across domain issue... thanks
  8. ts2032

    Listbox addItem help

    thanks Bill for your response. I figured out the problem right after I posted. The problem was that as the socket connected it went through multiple frames. Well, somewhere in there I had a keyframe with the listbox in it. In one keyframe it was one listbox, and in the next keyframe it was a...
  9. ts2032

    Listbox addItem help

    I am trying to populate a listbox control. Sometimes the listbox populates correctly, sometimes it does not. I am thinking it has something to do with the amount of time needed to complete the function, but am unsure. this is the part of the switch statement. case "\\A\\:&quot...
  10. ts2032

    Not Responding

    Thanks for your input. I tried installing using package and Deployment, and Windows Installer. I did notice, however, after sending several (8 or 9) files, that the development machine locked up also. The other machines lock up after sending only one or two files. I am using...
  11. ts2032

    Not Responding

    Hello, I have an messenger type application which sends files from one pc to another via the winsock control. I am using Windows Installer to install the application on the client machines. When receiving files, sometimes the application stops responding. This does not happen on the...
  12. ts2032

    Netscape object

    Hi all, Is there any way to open netscape and read the source of a page or execute javascript or in some way read the href of a link. It has to be netscape as the site is on the internet and our network will only allow netscape 4.75 to escape and access the internet.... thanks tsmith
  13. ts2032

    Application Icons

    Paraben Icon editor is a good program http://www.paraben.com/html/icon.html You can download the trial version, it is almost fully functional the only drawback is a 10 second wait screen, but I think it is worth the wait. tsmith
  14. ts2032

    FormMaker 2.0

    good Idea, Here is a link to the page http://home.elp.rr.com/smiths2you/FormMaker.htm thanks tsmith
  15. ts2032

    FormMaker 2.0

    I developed a small app to aid in making irregular shaped forms. The app allows you to design the form visually, then view the code necessary to generate the form in Visual Basic. I would like to have the app tested to see what potential it has. If you would like to test/play around with...
  16. ts2032

    PDW and scrrun.dll

    I verified that the files are on the install machine. When I try to registry the .dll or .ocx with regsvr32 I get an error. I tried to use windows installer 1.0 and came up with the same results. tsmith
  17. ts2032

    PDW and scrrun.dll

    I am using Visual Basic 6.0 SP5. I created a small app that stores all of your powerpoint files in an access database and allows you to load a playlist and show the presentations from the list. The first version worked fine so I updated it, allowing the user to specify folders which the...
  18. ts2032

    Simple radio button Code not working

    charan, I would change the names of the multiround button to mulitround1 & 2. Then you can check for the .checked property of these controls. function validateMulti(form2) { if (form2.multiRound1.checked==true &&...
  19. ts2032

    Hi all, I am having this problem

    Thank you for your response, The version I am running is 5.0, and the version I am receiving the complaints about is 5.5. tsmith
  20. ts2032

    Hi all, I am having this problem

    Hi all, I am having this problem and I don't know if if is related to VI or what. We have an intranet site. The server has several sites on it. One site was created in FrontPage and has no database, no global.asa. Just a simple website. The other site was developed using Visual Interdev...

Part and Inventory Search

Back
Top