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

  • Users: Deltaflyer
  • Content: Threads
  • Order by date
  1. Deltaflyer

    PHP Debug Program

    I am new to PHP. I am wondering how everyone debugs their scripts. I have a need to interogate a value of a variable during runtime. I need a way to step thru the code line by line...
  2. Deltaflyer

    Annoying popup message

    I have written an ActiveX control in VB to use in an asp system. The AXC will upload up to 10 files to the server at once, to do this it needs to know the destination folder on the server. I am passing this information to the AXC via javascript, but everytime i run the page i get the following...
  3. Deltaflyer

    Folder - Subfolders Request

    If you right click on a folder in windows and select properties, you get shown how many files and subfolders there are. Can i achieve the same effect through VB without physically visiting each and every folder below the start folder? If so, can you give me an example or point me in the...
  4. Deltaflyer

    Adding ActiveX Colour Palette

    I have been tasked to compile an ActiveX graph, (my first ActiveX project ever) and would like to be able to choose the colors shown on the graph. It took me a couple of days to figure out how to pass all the graph variables but that is now done, thankfully! I have also successfully added...
  5. Deltaflyer

    Flashing Taskbar

    How do i make the taskbar flash? My program is an ICQ style LAN based secure messenger, the management want to allow interoffice communications but not with the outside world. I have done the hard work but can't figure the simple task. Everyone says that the beep that accompanies the arrival...
  6. Deltaflyer

    Multi projects out of the same WWW root.

    We started using VInterDev about 3 years ago, when we were only running a couple of systems on the web. We now have 27 different systems running on the same www root, this is not a problem, the problem is keeping everyones project view up to date. 20-30 minutes the refresh is taking, is there...
  7. Deltaflyer

    style and text color failure

    i am currently using function mousein(x) { x.style.color = '#000000' x.style.textDecoration = 'none' } function mouseout(x) { x.style.color = '#FFFFFF' x.style.textDecoration = 'underline' } To change the style of my hyperlinks when the mouse is hovered over them, <a href=blah.com...
  8. Deltaflyer

    DAO playing havoc with my brain.

    I am using the following code to fill out a combo box with items from an access database, but each time i try to execute it i am coming up with &quot;TYPE MISMATCH Error 13&quot; on the Set rs=db.OpenRecordset line, can anybody help me please. Dim ws As Workspaces Dim db As Database...
  9. Deltaflyer

    The mystery of Netscape and the disappearing Cookies.

    I have a report that uses 40+ criteria to compile. My users have requested that i generate some kind of MEMORY SYSTEM that will remember all these criteria to save them from always having to re-enter. (Theyre a lazy bunch ;-)) This part i have done, (Wehay! :-D) a 300 line javascript reads the...
  10. Deltaflyer

    HTML E-mail

    With this coding on an ASP page, x=&quot;&quot; x=x&&quot;<html><body>&quot; x=x&&quot;<img src=../images/&quot; & picture & &quot;>&quot; x=x&&quot;</tr>&quot; x=x&&quot;</table>&quot; x=x&&quot;</body></html>&quot; oConnect.Execute &quot;EXEC master..xp_sendmail @recipients='&quot; & address...
  11. Deltaflyer

    Multi Select Combo Box

    On the click of a button i need to be able to select several entries out of a multiple combo box containing hundreds, can anybody point me to a working version of this theory or could you help me out? I have tried to select them individually and i only end up with the last one selected.%-( It's...
  12. Deltaflyer

    Cookies across several pages.

    Is it possible to use the cookies from one page on another page? I need to be able to access stored details across 4-5 pages and thought that cookies would be the answer? If it is even possible can you help me out? Thanks for you time...
  13. Deltaflyer

    Opener Span Change

    Can you update the innerHTML of a span tag that is on the opener of the current window. I have been trying to use window.opener.span.innerHTML = 'Whatever' and it does not work. If this is possible could somebody please show me how. Thanks for your time...
  14. Deltaflyer

    Combo Box Styling

    I've heard that you can change the font and font styles of a combo box? Is this true and if so can anybody tell me how to achieve the change? [COLOR=blue]D[COLOR=red]e[COLOR=blue]l[COLOR=red]t[COLOR=blue]a[COLOR=red]F[COLOR=blue]l[COLOR=red]y[COLOR=blue]e[COLOR=red]r [COLOR=blue]The...
  15. Deltaflyer

    Row Return Failure

    Dim db As Database Dim rs As Recordset Set db = Workspaces(0).OpenDatabase(Locale + &quot;\vbft.mdb&quot;) sSQL = &quot;Select * from details&quot; Set rs = db.OpenRecordset(sSQL, 2) With this coding i am trying to return 400+ rows, there are 400+ rows in the table, but whenever i...
  16. Deltaflyer

    Child Refresh.

    I have a page that opens a child window, i want to be able to update the child window location from the parent window. How do i achieve child.location.href=&quot;xyz&quot;? Thanks...
  17. Deltaflyer

    Insert Failure

    I am trying to insert a row into an Access table, but i keep getting this error, Run-Time Error 3011 The microsoft jet db engine could not find the object 'insert into details (wkstkarea), ('DBArea1')'. Here id my coding : Dim db As Database Dim rs As Recordset Dim sql As String...
  18. Deltaflyer

    Access Password Fault.

    I am using the following line Set db = Workspaces(0).OpenDatabase(locale + &quot;\vbft.mdb&quot;, , , &quot;Ms Access *.mdb;PWD=password;&quot;) to access my database, but it keeps on coming up with &quot;Not A Valid Password.&quot; Anyone got any ideas why...
  19. Deltaflyer

    External File Referencing

    I have a page that i want to link documents to. Like in HTML, where you click a button and download the file AND open it. Could somebody please tell me how i can open an external file in its native browser. Ie. .DOC in Word .XLS in Excel, .PPT in Powerpoint...
  20. Deltaflyer

    Textarea Formatting.

    I want to be able to add HTML tags to a textarea selection, but dont know how to access selected text. I was thinking something like document.form.field.value.selection = &quot;<B>&quot; + document.form.field.value.selection + &quot;</B>&quot; Can anyone help me out, how do i access the...

Part and Inventory Search

Back
Top