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

    COUNTIF function with multiple conditions

    I have two columns, A and B. I need to write a formula to count how many rows contain the value 2 in column A and the value 3 in column B. I was messing around with the COUNTIF function, but it looks like you can only use one column of data for this function. Any help you can provide is...
  2. Edge118

    Hard Drive Copy

    Is it possible to copy everything on my 40GB hard drive to my 60GB hard drive? Would Windows and other applications copy over and function alright or would I need to install the OS on my 60GB hard drive separatly? I'm pressed for disk space and don't want to be hassled by reimaging my hard...
  3. Edge118

    Text Alignment

    Here's a tough question: Is there a way to center the text in my label? I was looking for align property, but to no avail. Thanks for the help. "Pin me. Perl me." Regards, Chris
  4. Edge118

    Reseting form fields on refresh

    When I hit the refresh button my IE browser, is there a way to have all the fields reset (as they do when I click my reset button)? Currently when I hit the refresh button, all of the data typed into my text boxes stays there. Thanks. "Pin me. Perl me." Regards, Chris
  5. Edge118

    style.visibility='hidden'

    Is there a way I can make both Cell1 and Cell2 disappear? If I put more than one <div id="HideMe1"> in my code, then nothing disappears. I'm just messing around with this stuff as I don't have any experience with it. <html> <body onload="HideMe1.style.visibility='hidden'"> <table> <tr>...
  6. Edge118

    Drop Down Box - Dynamic Page

    I have a drop down box and when the user selects a choice from the box, I want other elements to appear on the form/page based on what the user chose (for one choice, two textboxes might appear, and for another 3 checkboxes might appear). What would be the best way to go about this...
  7. Edge118

    Microsoft Excel

    I'm using the COUNT function in Microsoft Excel 2003. I'm counting cells A1:A5 How can I make it so it counts the cell only if the value in the cell is greater than 5? Thanks! "Pin me. Perl me." Regards, Chris
  8. Edge118

    Style sheet

    I'm making a style sheet for my .aspx page and I hoping someone could tell me what denotes a comment. The style sheet is a .css file. body{background-color:Aqua} h1 {font-size: 36pt} h2 {color: blue} p {margin-left: 50px} Is it the # sign? "Pin me. Perl me." Regards, Chris
  9. Edge118

    Simple Question - select/list box

    I just started learning asp .net yesterday and I had a question regarding the following code: <%@ Page Language="C#" %> <html> <head> <link rel="stylesheet"href="intro.css"> </head> <body><!-- #include File="C:\Inetpub\wwwroot\DotNetJunkies\DotNetJunkiesWeb\_js\omni.inc" -->...
  10. Edge118

    Reading and Writing to .txt files

    Does anyone know any "useful" sites that explain how to read(line by line) and write data to .txt files? My search came up empty. Thanks. "Pin me. Perl me." Regards, Chris
  11. Edge118

    Dertermining Program Path

    I have a command button called cmdDisplay and a textbox called txtDisplay. How do I display the location/path, my program is running from, in txtDisplay when I click cmdDisplay? Thanks for the help. "Pin me. Perl me." Regards, Chris
  12. Edge118

    Open Dialog Box

    In my program I want to make an open dialog box come up when the user clicks on a command button so that they can select a file that will then open. I was looking at the MSDN documentation and found the following code, but CommonDialog1 isn't declared so it doesn't work (What should I create it...
  13. Edge118

    Minimizing an application

    Is there a way to have the program appear in the tray of icons in the bottom right of your screen when the user clicks the minimize button on the form? Thanks! "Pin me. Perl me." Regards, Chris
  14. Edge118

    Opening a file

    If I have a text file at the location "c:\hello.txt" how can I have my VB program open it (as if I double clicked on it) during execution? Thanks for helping. "Pin me. Perl me." Regards, Chris
  15. Edge118

    Combo boxes

    Is there a way to prevent the user from typing stuff into the combo box(drop down list), and in turn just allowing them to select one of the items that is on the list? Thanks. "Pin me. Perl me." Regards, Chris
  16. Edge118

    Question about classes

    I have my code for my Alarm class below. My one method is called isEqual and is used to compare two alarm objects. I call it by saying object1.isEqual(object2). What I want to know is, when I'm in the mehtod, how do I refer to the object that called it? In C++, "this" is used, but I'm not...
  17. Edge118

    General Question - Line Numbers

    Is there a way to display the line numbers in my code for reference purposes? example: 1 'code 2 'code . . . 9 'code You get the point...thanks for your help "Pin me. Perl me." Regards, Chris
  18. Edge118

    Question About Classes

    Public Month As String Public Day As String Public Year As String Public Hour As String Public Minute As String Public Second As String Public isAM As Boolean Public Function Display() As String Dim NowString As String NowString = "Hi" End Function How do I return a string in...
  19. Edge118

    Visual C++ .NET Error Help

    Can anyone tell me what the following error message means, and if you have any tips on how to fix it that would great. DDX_Control(pDX, IDC_STATICTIME, m_sTime); I added a variable of type CString named m_sTime to one of my static textboxes. Thanks! "Pin me. Perl me." Regards, Chris
  20. Edge118

    Restricting user Input

    char goFirst; cin >> goFirst; Is there a way to prevent the user from being able to enter more than one character? Thanks for your help! "Pin me. Perl me." Regards, Chris

Part and Inventory Search

Back
Top