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 TouchToneTommy 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: LouisC4
  • Content: Threads
  • Order by date
  1. LouisC4

    Quotes in HTML

    Is there such a thing as a triple quote? Just kidding. I have a problem. Can someone please tell me how I can write the following? onMouseover="ddrivetip('<tr><td class='style1'>Hello World</td></tr>')"; What kind of quotes can I use? The problem is the single quotes of class='style1'...
  2. LouisC4

    Calling Javascript from an asp button

    Hello, I am trying to call a javascript from a asp button but I am not getting any results, here is my code: <head runat="server"> <title>Untitled Page</title> <script language="javascript"> var msec=0 var sec=0 var min=0 var hrr=0...
  3. LouisC4

    Disable input field from pasting

    How do I go about making an input field or textbox unable to accept pasting (i.e. CTRL-V or right-click paste). I do want the user to be able to type in this input field but I don't want them to be able to paste. Thanks, Louis
  4. LouisC4

    Textbox that doesn't allow pasting

    Is there a way to have a textbox that wont allow pasting? (No CTRL-V or right-click paste.) I've seen this somewhere but I don't know how this is accomplished. Thanks for your help, Louis
  5. LouisC4

    HorizontalAlign=&quot;Justify&quot; is acting weird

    Hello, I have a ViewGrid where one of the columns is written as: <asp:BoundField DataField="Ad" HeaderText="Description"> <ItemStyle HorizontalAlign="Justify" Width="410px"/></asp:BoundField> What is weird is that the justification only happens on the odd rows and the even rows are left...
  6. LouisC4

    href in SELECT statement

    Hello I am using a ViewGrid and I will like to display a email hyperlink in the grid. I've read that I should put an href on my SELECT statement but is not working, this is the code I have: <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$...
  7. LouisC4

    Column Width on GridView

    Is there a way to resize the column width on a Gridview? Thank you Louis
  8. LouisC4

    Click event on a textbox

    Do textbox controls have a click event? If they don't how is it possible to fire up and event when a user clicks on a textbox control or when the controls gets focus? I am working on a web form? Thanks, Louis
  9. LouisC4

    Tab Order button

    Hello, How come the Tab Order button is disabled when I work on Web Forms? When I switch over to a Windows Form it's enabled. Thank You, Louis
  10. LouisC4

    SQL 2000 in VS 2005

    Hello, I am using Visual Studio 2005 and SQL Server 2005 to create a website, I've created a database and a few tables. My problem is that my web host only supports SQL Server 2000. I've downloaded SQL Server 2000 MSDE, but I can't get it to run under Visual Studio 2005. Is this possible, if...
  11. LouisC4

    Which SQL Server 2000 or 2005?

    Hello, I have installed Visual Studio 2005, SQL Server 2005 and SQL Server 2000. I managed to create a database using the Server Explorer in VS. How can I tell which engine (SQL Server 2000 or 2005) the database I created is running in? I need to create my database and tables in SQL Server...
  12. LouisC4

    SQL Server 2000 and SQL Server 2005

    Hello I am fairly new using VS.NET 2.0. I have installed Visual Studio 2005 with SQL Server 2005 on my computer. I am currently working on a website project that requires a simple database. My hosting company supports VS.NET 2.0 with SQL Server 2000 only, for now. My question is this: If I...
  13. LouisC4

    Calling a php Function from a SELECT statement

    Hello, How can I call a php fucntion from within a MySQL SELECT statement? What I have is: $result = mysql_query("SELECT GetCountry(IPAddrss), IPAddrss FROM pgstats"); GetCountry is my php function, and it does work when I call it like this: echo GetCountry($ip); What am I doing wrong...
  14. LouisC4

    Select only the last 40 records

    Hi All, Is there a way to do an SQL SELECT to select only the last 40 records of a table? TIA, Louis
  15. LouisC4

    Text Messaging (SMS) for VFP

    Can anyone recomend a good SMS ActiveX or App. for VFP? What's the best reliable way to go about sending SMS through VFP? Thanks in advance, Louis
  16. LouisC4

    Timer

    Hi, I am using a timer with an interval of 5 minutes to check scheduled emails to be sent out. What I will like to know is if the Timer takes up a lot of resources to keep checking every 5 minutes to send out emails. I don't know if I should be worring about this. I apologize if this is a...
  17. LouisC4

    Duplicate Records

    Hi, How can I use an SQL - SELECT statement to ONLY list duplicate records? if I do: SELECT name1 DISTINCT, gender, jobdesc; FROM clients INTO CURSOR tmpcursor This will give me a list of all none duplicate names. What I am looking for are all the names that are duplicates (the ones that do...
  18. LouisC4

    Function and paramaters

    Hi All, I have created a function that takes 4 parameters. When I call the function it looses the last parameter. I call the function from an SQL statement, something like this: par1 = "Hello " par2 = "World " par3 = "it " par4 = "works!!!" SELECT units, FormatX(par1, par2, par3, par4) FROM...
  19. LouisC4

    DATETIME()

    Hi all, How can I add or subtract Hours or Minutes from a DateTime variable? Example: x = DATETIME(2005, 3, 24, 10, 45, 22) if I wanted to subtract 45 minutes from x to get the result of 3/24/2005 10:00:22, how is this achieved? also, is there a way to subtract 1 day from x to get 3/23/2005...
  20. LouisC4

    Customize Main Foxpro Window size

    Hi all, I have a small form on my application, when I compile it I want the application to be the size of my form. How can I accomplish this? TIA, Louis

Part and Inventory Search

Back
Top