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 Wanet Telecoms Ltd 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: shades44
  • Content: Threads
  • Order by date
  1. shades44

    regular expression help

    Hi, can anyone give me the regular expression for finding sole instances of "\n", not grouped in twos or more.. something along the lines of: {not "\n"}{"\n"}{not "\n"} Thank you, shady
  2. shades44

    setting min-width for resizing browser

    Hi, i was wondering does anyone know how to set the minimum width a user can resize their window to? i dont want it to be resized to less than 400px say.. using javascript or whatever..
  3. shades44

    overriding "reject" cursor during drag

    Hello, I'm trying to override the "reject" cursor that appears when i try to drag a fixed element element. For example i have: <img src="redx.gif"> and when i try to drag the image the cursor changes to the "reject" cursor. I want to try to override that and make it the "hand" cursor. Any...
  4. shades44

    simulate drag and drop?? URGENT

    Hello, I'm trying to simulate a drag and drop operation across frames. I have 4 frames and i want to be able to tell when: 1) the user's mouse button goes down in a specific frame (say frame 2) 2) it stays down as he moves it across to another specific frame (say frame 4) 3) he releases the...
  5. shades44

    website roadmap

    hello, i'm trying to create a navigation path (roadmap) that shows users where they are in my website.. i have two frames, one is the main frame where the pages are loaded and the other is the contents frame and where i want my roadmap path to appear. My question is this: i want my contents...
  6. shades44

    element in view?

    Hi does anyone know a quick way to find out if an html element is in view or not depending on the scrolled position of the page?
  7. shades44

    Sorting a DataGrid inside a Repeater

    Hello, I have an embedded datagrid inside a repeater whose datasource i set in the repeater's ItemDataBound event handler. My question is this: if i want to make the datagrid sortable do i initialise the datagrid's SortCommand in the same place where i set it's datasource? If my repeater is...
  8. shades44

    dynamically modify css classes

    hi, does anyone know of a way to modify a css classes' properties using javascript such as this simple style: <style> .highlightedCell { BACKGROUND-COLOR: RED; } </style> lets say i have some cells in a datagrid that have this class and then i want to change their...
  9. shades44

    frames problem

    Hello, I have a page with two frames in it as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <html> <head> <title>title</title> </head> <frameset> <frame name="banner" src="banner.aspx"> <frame name="main" src="main.aspx"> </frameset> </html> is there anyway i can...
  10. shades44

    datagrid BIG RED X

    hello, i have a button, a datagrid and a textbox this is my code: private void button1_Click(object sender, System.EventArgs e) { DataTable dt = getDevices();//returns a datatable dtgEvents.DataSource = dt; dtgEvents.Refresh(); } my getDevices() method reads the value in the textbox...
  11. shades44

    regular expressions

    Hi, I'm trying to use Regular Expressions to search for this pattern --> [#] (basically a number in square brackets). I cant seem to create the correct search string to do that. I have this: string pattern = "[[](/d)[]]"; Any help would be much appreciated! shady
  12. shades44

    Remotely Scheduling a Task

    Hello, i'm trying to schedule a task on a windows 2003 system remotely from an XP system using vbscript. I discovered the handy win32_ classes and i wrote this code to try to open notepad remotely using the win32_ScheduledJob class: Set objSWbemLocator =...
  13. shades44

    automate an installation (.msi)

    hello, I want to automate an installation and what i have is the source code of the web application and the .msi installation file. By automate i mean automatically answer whatever input prompts the setup dialog may have and make it run passively so that i end up with the program installed...

Part and Inventory Search

Back
Top