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

    Get an Error as soon as the program runs.

    Hi, I am getting an error as soon as I run my program. The error is main.exe has caused a system error and needs to be closed. I know there is something wrong with my Container class but I can't find out the problem. My Container class Code: #include <iostream.h> //file SetOfPersons.h class...
  2. daisypolly

    Read one character at a time with scanf

    Hi, How can I read 1 character with scanf and then store all the characters in the variable.for example I am trying to do this but it doesnot work; #include <stdio.h> #include <stdlib.h> int main() { char c; float i; int number; float f =50; char newchar; while(c!='\n') {...
  3. daisypolly

    Validation of My program

    Hi, I am making a small program of cash register. I am having trouble doing the validation. If someone could help me It would me a great help. My Program is: <code> #include <stdio.h> #include <string.h> char itemName ; float itemPrice = 0; float total = 0; int numberOfItems = 0; int number =...
  4. daisypolly

    A simple program in C

    Hi, I am making a cash register in C. I want to have an add ,remove functionality.I am doing that I get an error. The user will press 1 and they will be able to add the item name and the item price. my code is: <code> #include <stdio.h> int itemPrice = 0; char itemName ; int main(int argc...
  5. daisypolly

    vertical navigation menus

    Hi, I am making a dhmtl menu and I want to keep the submenus open on their corresponding page by using one include file of the menu. For example,take this as my menu: Fish Salmon Tuna Flowers Tulips Lillies I want the Fish submenu to open when I go to a page that is about fish(on my...
  6. daisypolly

    coloring the row

    hello, I am really having trouble creating this macro if some one can help me it will be very much appreciated. I have two workbooks name of first workbook is "pro" and the name of the other workbook is "tim" what I want to do is that if the row of "pro" A2 to G2 is empty and the row of the...
  7. daisypolly

    rounding in sql

    I am having some problem with this query: SELECT Jaso.dan_LOBTB028PATENT, (DAYS(CURRENT_DATE)-DAYS(jason.datecreated))/30 FROM Video In the line where the days function starts this whole line is getting the diffrence between todays date and the date in the column(Datecreated) field...
  8. daisypolly

    Reading .dat files

    Hi, How can I read .dat files. And display it in the text box. Any help will be appreciated. Thanks Daisy
  9. daisypolly

    Vb data envirnoment help needed badly

    Hi, I am passing the parameter to the data report with this Code: If detest.rscmdTest.State = adStateOpen Then detest.rscmdTest.Close End If a = InputBox("Type the action date") b = InputBox("Examiner name") c = InputBox("Section") detest.cmdtest a, b, c reportrptTest.Show The...
  10. daisypolly

    SQL QUERY HELP NEEDED BADLY

    HI, I am trying to make a query that will show how many due application are there for persons and to find that out I have to put some conditions for example the date should be greater than 2001/01/01 and the field act_type='DED' other restrictions which i know how to do and am doing them in the...
  11. daisypolly

    Lotus Sql query

    Hi, I am new at lotus approach and i don't know where to put the sql query I know about the find one in lotus but I am looking for something like access has in where you type the query and it outputs the results. I know about the open/edit option in approach but it only works for very simple...

Part and Inventory Search

Back
Top