Search results for query: *

  1. Vani Alcaraz Dinglasan

    why cant i display my 2 table records in two datagridviews in windows form?

    the two daragrids shows only the table 1 records. the difference between the two table records is the semester and grades is it ok that all my tables are in one dataset only? i really dont know how to connect different tables into one, so i just sticked to this kind of step
  2. Vani Alcaraz Dinglasan

    why cant i display my 2 table records in two datagridviews in windows form?

    why cant i display my 2 table records in two datagridviews in windows form? it only display the records of table 1 to the 2 datagrid views here is my code Imports System.Data.SqlClient Private cs As New SqlConnection("Data Source=JARM\SQLEXPRESS;Initial Catalog=ccs;Integrated...
  3. Vani Alcaraz Dinglasan

    Query Builder - Filtering by two columns. is it possible? how

    i succeed at filtering 3 columns but does not display.. but when i deleted the filter on the other two columns it displays records. example my column is Sem and it is integer type when filtering integer does it look like this @Sem=1,2?
  4. Vani Alcaraz Dinglasan

    Query Builder - Filtering by two columns. is it possible? how

    i filtered the 3 columns at the same time.. but it doesnt display any values? i got no error using the query builder
  5. Vani Alcaraz Dinglasan

    Query Builder - Filtering by two columns. is it possible? how

    i try to filtered two columns to make SEARCHING a record more specific what i did is LIKE @ YearLevel + '%' and LIKE @ Semester + '%' but i got an error when i try to filter two columns it says Data type error in expression
  6. Vani Alcaraz Dinglasan

    how do i navigate through records?

    so you mean that 1 database = all student records? is the right one.. thanks for this sir.. ill revise it ok sir, ahm.. i have 4 tables for one student each table represents - studnumber, studname, course, year, semester and grades (like 1st year, 2nd year, 3rd year, 4th year) if possible i...
  7. Vani Alcaraz Dinglasan

    how do i navigate through records?

    i have 1 database for 1 student. 1 student has 4 table records is it possible to display all 4 table records in 1 datagridview by having a "NEXT BUTTON" when i click the button it display the other records.. i really need this for my thesis in order to graduate. kindly help me please. thanks!
  8. Vani Alcaraz Dinglasan

    created a table/datagriview when a button is pressed. then how to connect/add to SQL

    thank you jgat.. i will try.. ill notice you as soon as i tried it.
  9. Vani Alcaraz Dinglasan

    Question how can i call a 3 datagridview in one search button(all i can do is one datagridvie)

    thank you sir, ill go research about DataAdapters and DataTables.
  10. Vani Alcaraz Dinglasan

    Question how can i call a 3 datagridview in one search button(all i can do is one datagridvie)

    how can i call a 3 datagridview in one search button i have a textbox and button for the searching method.... it is ok.. i use the student number for searching and it works.. but i need to do is.. call or view all datagridviews with the student number (all 4 tables have the same record of...
  11. Vani Alcaraz Dinglasan

    created a table/datagriview when a button is pressed. then how to connect/add to SQL

    i have a button. when i click the button, it will automatically create a table.. ---------------- i have a code that will create a table ---------------- Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
  12. Vani Alcaraz Dinglasan

    difference of coding from adding data source or adding object

    i use vb.net for our system in making our thesis.. and our database must be made from sql... what is the difference of connecting the database to vb.net --USING - "CODING" difference from ---USING - "ADDING DATA SOURCE, ahm the one that you would browse the sql .mdf file...
  13. Vani Alcaraz Dinglasan

    Where can i see the expression property of a column in datagrid?

    sir thank you very much! it worked!!! im sorry i didnt try to understand what you are saying rather i post and post again.. thank you thank you a big help for our thesis... the bad is.. im the only one making our system thesis.. coz im the only one who thinks that i can.. thanks
  14. Vani Alcaraz Dinglasan

    Where can i see the expression property of a column in datagrid?

    sir i added a new column as you said.. in my sql design view... and this is my code to connect my sql table to vb.net datagridview ------------------- Imports System.Data.SqlClient Public Class Form2 Private cs As New SqlConnection("Data Source=JARM\SQLEXPRESS;Initial...
  15. Vani Alcaraz Dinglasan

    Where can i see the expression property of a column in datagrid?

    ok sir, thank you ill try adding column to my sql database
  16. Vani Alcaraz Dinglasan

    Where can i see the expression property of a column in datagrid?

    Where can i see the expression property of a column in datagrid?
  17. Vani Alcaraz Dinglasan

    datagrid column coding if else

    my apologies.. it would never happen again.. thank you very much
  18. Vani Alcaraz Dinglasan

    datagrid column coding if else

    yes sir. im sorry for double posting. i just figured out that i posted on the wrong section. thank you for the code, great help
  19. Vani Alcaraz Dinglasan

    datagrid column coding if else

    i got a datagrid connected to sql... my problem is i have two columns which is grade and evaluation i need to do is.. if grade has a value of 1-3 print passed and 4 above will print failed --------------------a string will be printed in evaluation column here is my sample code of mine...
Back
Top