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 strongm 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. gazflat33

    Displaying simple chart

    Hi, I would like to construct a simple facility within a vb form to display some values. Reading data from a simple Access table with two columns (incomings, outgoings) to display a chart showing these two values. How do I go about this please? Many thanks to those who reply, Gareth
  2. gazflat33

    MSChart

    Anyone know how to plot more than one row? :-S
  3. gazflat33

    MSChart

    Hi guys, I want to read data from an access table into my chart, the thing is i can only seem to plot one line unless I poorly hack the database table. How do I go about this? Cheers Gareth
  4. gazflat33

    ADODC problem

    I have my code which finds a record in a datagrid, using an adodc. What I want is my other adodc to point to the record that the first one is. Private Sub Command3_Click() surfynd = "Surname=" + Chr(39) + RichText1.Text + Chr(39) Adodc1.Recordset.Find surfynd Text1.Text =...
  5. gazflat33

    PL/SQL

    "You may count rows in post-insert trigger" Hi sem, could you give me an example please?
  6. gazflat33

    PL/SQL

    Hi, I would like some help on creating a procedure to call a trigger. I would like to not allow inserts of students onto attendances of offerings that would give a count above a maximum. So say an offering has a cap of 20 students, i want to be able to stop any inserts if the limit is reached.
  7. gazflat33

    Recursion in VB

    I have an access table which contains employee information. In this table each employee has a line manager which relates to another employee in the same table. I can get VB to display the employee heirarchy via a tree view, and can change an employees line manager. All line managers take a cut...
  8. gazflat33

    Help with coding please!

    Hi people. I am doing some very basic objects work, trying to help a real life problem so to speak. I have an array of pointer properties, which are storing residential, and commercial buildings. I would like to get 3 more functions working properly, and any heplful souls i will give more info...
  9. gazflat33

    What coding is needed to

    Clear my queue before i read data into it from a file? It will read in the data correctly except i have an extra bit off info which im sure is there because i havnt cleared the queue first. Heres my code: case 'R' : cout << &quot; read in data saved to file \n&quot;; Plane_save =...
  10. gazflat33

    My Program

    ok heres how it looks now: void main() { int mort_int; float mort_float; string mort_name; int loan_int; float loan_float; string loan_name; int save_int; float save_float; string save_name; mortgage(mort_int[MAX],mort_float[MAX],mort_name[MAX])...
  11. gazflat33

    My Program

    OK i done this wings (thanks for replying by the way) and i get these errors now: Error 24:Undefined symbol 'mort_int' in function main() Error 24:Undefined symbol 'mort_float' in function main() Error 24:Undefined symbol 'mort_name' in function main() Error 25:Undefined symbol 'loan_int' in...
  12. gazflat33

    My Program

    Sorry i forgot to mention that the errors i am getting are: Error 24:Expression syntax in fuction main() Error 25:Expression syntax in fuction main() Error 26:Expression syntax in fuction main() Thanks Gaz
  13. gazflat33

    My Program

    PLease can anyone debug my program for me!: #include <iostream.h> #include <fstream.h> #include <string.h> const int MAX_SIZE = 20; const int MAX = 10; typedef char string[MAX_SIZE]; void mortgage(int mort_int[MAX],float mort_float[MAX],string mort_name[MAX]); void loan(int...

Part and Inventory Search

Back
Top