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

    How do i dynamically change the innerHTML on my marquee

    Couldn’t create the string dynamically so I had to type string in for each mouseover like this <p><A onMouseOver="mainform.all.myscroller.innerHTML='<h3>Admin Tools</h3> Client 1<br> Client 2<br> Client 3<br> etc...'" thanks manvee1
  2. manvee1

    How do i dynamically change the innerHTML on my marquee

    single line txt works but i need multi line with styles. hence i need to build a string and print. any ideas/ thanks, Manvee1
  3. manvee1

    How do i dynamically change the innerHTML on my marquee

    code is uncomplete but heres a piece that works... my idea is to get the function create different msgs and use the mouse action to request msg 4 printing in marquee. thanks, manvee1 <html> <head> <meta NAME="GENERATOR" Content=""> <title></title> <SCRIPT LANGUAGE = "JavaScript"> <!-- HTML...
  4. manvee1

    How do i dynamically change the innerHTML on my marquee

    <p><A onMouseOver="mainform.all.myscroller.innerHTML=js function returning a string" href="https://... <p><A onMouseOver="mainform.all.myscroller.innerHTML=js function returning another string” href="https://.... i tried to make function to create the string and return the string when called...
  5. manvee1

    whats the syntax 4 embedding java script variables into html

    Bravo! Thanks Manvee1...
  6. manvee1

    whats the syntax 4 embedding java script variables into html

    I have a html marquee scroller which i want to put a javascript variable into dynamically. how do i make it print out the javascript variable. thanks, manvee1.. <marquee ID="myscroller" height= 100 width="150" behavior="slide" direction="up" bgcolor="blue" loop="15" style="color:white"...
  7. manvee1

    invalid qualifier when using string.remove()

    Thanks all. Strongm's line of code ... (vbRemove = Left$(strSource, StartIndex - 1) + Right$(strSource, Len(strSource) - StartIndex - Count + 1)) is PERFECT for the job! I think Strongm should work for microsoft and add this remove() to future vb code, that way lesser beings like me wont...
  8. manvee1

    invalid qualifier when using string.remove()

    My application is written in vb. Its a vb problem not c#. The problem being 'how do i remove the 5th to the last char from a string in vb'? I guess ill just have to live with the duplicates from removing the last character in the string. It does not harm anything this time since this column is...
  9. manvee1

    invalid qualifier when using string.remove()

    Thanks for thw swift response. I Went back to look at msdn and it looks like a c# procdeure.. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemstringclassremovetopic.asp anyway do u know of anyway/trick i can use to get at the 5th to the last character?
  10. manvee1

    invalid qualifier when using string.remove()

    my string (myStr) is read from a txt file into vb application like this... '9999', '909', 2051, 'A', 1, 12345 '9999', '909', 2052, 'B', 1, 12346 ... i have 4000 of these records which im placing into a table. problem is that the last column of the table is a number(4) hence 12345 wont...
  11. manvee1

    ASP server side radio button problem

    I figured the problem Ther was no problem with the code, the web server (web samba free web hosting "websamba.com") was the problem. i moved my code to another server and it works fine without changing the code. i spent 1 hrs writing this code and a total of 2 days debugging how stressful....
  12. manvee1

    ASP server side radio button problem

    Response.Write(radiob1 & "gsgsg") returned only the text gsgsg ie. radiob1 was blank request.form, request and request.querystring did not change anything. radiob1 is still blank i even tried removing <%option explicit%> and all the variable declarations and that did not work
  13. manvee1

    ASP server side radio button problem

    Thanks for your help Jbpez...i think i need the same name so as to group them up. where u can only have 1 radio selected for each answer. oops4me... I am trying to calculate the no of questions answered correctly. but in order to do so i also need to get the value of the radiobutton that...
  14. manvee1

    ASP server side radio button problem

    Problem. I have this html on my client: <A>1. How Long does it take the earth to orbit the sun?</A><BR> <INPUT type="radio" name="radiobutton1" value="365">A) 365 days<BR> <INPUT type="radio" name="radiobutton1" value="364">B) 364 days Mth<BR> <INPUT type="radio" name="radiobutton1"...
  15. manvee1

    Return Radio and Selectbox variable value to form field

    I hve a similar problem. I have this html on my client: <A>1. How Long does it take the earth to orbit the sun?</A><BR> <INPUT type="radio" name="radiobutton1" value="365">A) 365 days<BR> <INPUT type="radio" name="radiobutton1" value="364">B) 364 days Mth<BR> <INPUT type="radio"...
  16. manvee1

    JOptionPane and password question

    Is there anyway I can set the echo character in the textfield of the joptionpane in the code below to "*" code.... String inputValue = JOptionPane.showInputDialog("Enter Password");
  17. manvee1

    Help...Run-time error '440':

    this is on an oracle database. i notice it works when the value is at least 00848...... but why dosent it work when there are three 0s to start the value like 0007...... thanks manvee
  18. manvee1

    Help...Run-time error '440':

    I get Run-time error '440': OIP-08193: Cannot create cusor when i try to use a field form the database. The field is a date calculated with 'SysDate - PWord_Set_Date' problem code is line below: Set flds(i) = ODS.Fields(i) //problem code /*flds(i) on the database =...
  19. manvee1

    How i can assign variables to values in a xmlstring?

    Thanks a lot ive figured it out. the calling function was calling the function where update was taking place as many times as the loop....loop always equalled number of iterations on my msflexgrid (msflexgrid is where i was making my xmlstring from). consider this problem/issue closed:)
  20. manvee1

    How i can assign variables to values in a xmlstring?

    Thanks,Mike:) Client side. &quot;<DocNo VALUE=&quot;123&quot;></DocNo>&quot; was the missing link, this way docno now the node has an attribute i can point to. <Parameters> <Parameter DocNo=&quot;123&quot; Type=&quot;A&quot; Day=&quot;Mon&quot;/></Parameter> <Parameter DocNo=&quot;111&quot...

Part and Inventory Search

Back
Top