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 Chriss Miller 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. miikel

    Striped alternate lines not working after filtering.

    Hello there Tek-Tips experts. im using ajax/jquery to apply stripes to alternative lines on a table of products, as below: <script> $(function () { $('#target2').bind('keyup', function () { $('#form').delay(700).submit(); })...
  2. miikel

    Tabs and buttons disapearing

    Additional info if i open a new sheet, i can select view side by side from the view menu to show the sheets well, side by side, and the window control bar appears (is that officially the window Title Bar??). however as soon as this other sheet is closed, the window redocks at the top of the...
  3. miikel

    Tabs and buttons disapearing

    ok, i apologise in advance. i was busy writing a scathing response "of course it is" so i thought id go check it first. it seems that it is not maximised, but there is no window bar at the top. the window top seems tied to the section under the ribbon. i say under the ribbon because i have...
  4. miikel

    Tabs and buttons disapearing

    Hello there all. An odd one here. i have an excel sheet, that when opened, does not dispay the sheet names or the restore, minimise and close buttons. if i set the ribbon to minimised then the sheet name tabs appear, but the buttons remain hidden, and altho the sheet appears to be maximised...
  5. miikel

    error when trying to set visible property of frame

    Yay!! ive fixed it!!! turns out the control i was trying to make invisible was the next one in the tab order, therefore I was trying to set the visible property to false of the active control! one to watch out for!!
  6. miikel

    error when trying to set visible property of frame

    could not set the visible property. unexpected call to method or property access" I have some code that has been running for a while now without issue. i entered the code today to try to make some amends, and during testing the above message appeared. this message appears when: i have two date...
  7. miikel

    Datagrid refresh problem

    Yep, that is how it i want it to be. thanks again. starred for your efforts!
  8. miikel

    Datagrid refresh problem

    lol i love it when a plan comes together!! thank you so much! i had a feeling there had to be a way to do it, but was kinda hoping i hadnt missed something THIS basic!! thanks for taking the time to respond and refraining from throwing insults at this stupid noob!! :-)
  9. miikel

    Datagrid refresh problem

    hello there. I have a problem with a datagrid on a VB.net 2003 form. the datagrid displays data from an mdb file via an odbc connection. on the form i have a toolbar, some buttons and the datagrid. on of hte buttons is an "Add New" option, that opens a new form to update data in the database...
  10. miikel

    VBA Crashes Application.

    Hi. I have a problem with Office 2002. When entering VBA in any app, the whole application just shuts itself down without an error or warning. This started in Excel, but has now spread to Access - when adding a combobox with the wizard,t he wizard steps through to the finish screen, then Access...
  11. miikel

    Acrobat object in web page.

    Apologies if this has already been covered - I have had a look and cannot see a topic like it though. What I want is to create a PDF object in a web page and use text fields to update the information on the PDF. One application I envision for this, if I can get it to work, is to implement an...
  12. miikel

    error 71 appears when trying Net use //server/share

    Certain users are unable to connect to the network share. The problem is limited to particular users and not the machine. If another user logs on, the share is available. The share is hosted on an NT4 workstation, with all the latest service packs applied. One of the clients is running XP, but...
  13. miikel

    Making Divs invisible, or set not to display.

    :~/ The case was wrong!!! In my defence, Ive been working in VB for a while now and just switched to JS - so am not used to case sensitivity! Thats my excuse and I'm sticking to it!! function hide() { var obj=document.getElementById("Name").style obj.visibility='hidden'; } function show() {...
  14. miikel

    Making Divs invisible, or set not to display.

    Here are the functions Im using with Visibility. Anything up with these?? Its prolly summat obvious, but Ive been staring at them all day now!!! function hide() { var obj=document.getElementById("Name").style obj.Visibility='Hidden'; } function show() { var...
  15. miikel

    Making Divs invisible, or set not to display.

    I'll give it another go and post the code if it doesn't work... Thanks for the reply...
  16. miikel

    Making Divs invisible, or set not to display.

    I am trying to make a div disappear when check box is checked, but am unable to get the block to go invisible. I have tried using the Visibility property in css and (code below) the display property, neither of which make the div invisible. I know the mouse over events work, as I have added a...
  17. miikel

    PHP Newline chars not producing a New Line

    Using CSS has sorted the issue.
  18. miikel

    PHP Newline chars not producing a New Line

    For the record, I am using your (Laura) solution, and I've got round the spacing issue by altering the line-height property in the style sheet for this element. Thanks.
  19. miikel

    PHP Newline chars not producing a New Line

    Thank you Laura for the reply. This had occured to me, and it does the job - but... The line space it puts in seems to be a double line space - perhaps not double, but too much space anyways. I just want to have a new line. But thanks again for taking the time to reply.
  20. miikel

    PHP Newline chars not producing a New Line

    I am trying to get PHP to output a new line char to the screen, but the text stubbornly stays on one line. I have tried using \n in various places, but do not get the desired results - either division by 0 error, Session-Start : Cannot output header, \n in the string or no new line! I have also...

Part and Inventory Search

Back
Top