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. Codfish

    HTML element positions using DOM

    Using the client side DOM I can get the position of an element using: var myelement = document.getElementById("myid") alert(myelement.style.top) but if a style attribute such as style="top:100" for the HTML element has not been defined the style properties are empty in the...
  2. Codfish

    Jscript vs JavaScript

    Thanks Petey... Much appreciated. Do you find the market leans more toward JavaScript or Jscript? Is Jscript more prevelent in intranet apps rather than internet apps? (that is Jscript paired with DHTML more often then JavaScript)
  3. Codfish

    Jscript vs JavaScript

    A simple question for you Java users: Is there any significant difference between Jscript and JavaScript? I realize Jscript is Miscosoft and JavaScript is Sun, but is the implementation the same? I realize there is a good bit of difference from Java and J++, and J++ may be headed out to...
  4. Codfish

    Email drop into VFP

    David, I have done a fair amount of work referencing VFP to outlook. Have you found the answer you were looking for? if not, let me know and maybe i can help. codfish
  5. Codfish

    rs.RecordCount (ADO)

    A return value of -1 often means the cursor does not support the requested operation. Use the RecordSet.Supports method to find out if a particular recordset will support the function you are requesting. Oh and by the way, just because you open a recordset as a particular type, ADO can switch...
  6. Codfish

    Displaying Progress...How to?

    Ah yes! the old colored status bar on the form trick eh? Remember Maxwell Smart? Pam, you mentioned Balena's book. If you have it, check out pages 346 through 348 for an example of exactly what you are trying to do using the picturebox control I mentioned. You just need to use the Line...
  7. Codfish

    How to code a Password to open an Access DB

    You can pass the Username and Password in the connnection string in an ADO implementation. Have you tried that? I have had much better luck using ADO objects directly rather than using the MS ADO control. My life got better once i dropped their data control and went for the objects directly...
  8. Codfish

    Accessing FoxPro with VB

    You can automate Visual FoxPro from VB, open a fox table and use any command available in Fox from within VB including Append / Insert Blank. Realize though, that this works on the Fox table, not on a table accessed through ADO in VB. Are you trying to access a fox table (.dbf)through VB or an...
  9. Codfish

    Displaying Progress...How to?

    Pam Balena's book is very good. I'm glad to hear you have it. Is there any reason you are using a separate form for the progress? you could just drop the pictureBox on the main form and make life much simpler for yourself. As far as lightweight controls and saving resources... Is this a...
  10. Codfish

    Visual Basic displaying....

    Like this: Sheet1.Range.("A1").Value = 1 OR Coord = "A1" Sheet1.Range.(Coord).Value = 1
  11. Codfish

    Displaying Progress...How to?

    1. The best bet is to use a PictureBox control. (the first control on the standard toolbox). The advantage of the picturebox control is that it has an align property that will keep the control attached to a part of the form (such as the bottom) and will auto-resize with the form. Drop one on...

Part and Inventory Search

Back
Top