Search results for query: *

  1. R

    using only the .exe file

    sir i have a new problem. only what framework do i need to come up with my .exe file from vb 2008 express edition?
  2. R

    using only the .exe file

    thank you sir
  3. R

    using only the .exe file

    after our thesis document and system. our school requires us to burn the system into the CD/DVD its two CD's or dvd, 1 cd is for the sql installer and sql database for the system 1 cd is for the executable only. no vb installer and the project is not also included. will the .exe file of the...
  4. R

    connecting multiple table records and display on one datagridview, is it possible?

    this are the details im gonna use P_ID (a primary key) student number full name or firstname,lastname? (which is better) year level semester course subject code subject description grade remarks my system would be aimed to.. display the current grade of the student for example he is 4thyear...
  5. R

    computed column formula HELP!

    Computed Column not working the computed column REMARKS doesnt works? i got no problem on creating the database and table no problem on connecting it to the visual basic but when executing when i input GRADES nothing happens to the REMARKS computed column how can i do that.. help sir...
  6. R

    Hints, Tips, Advice regarding creating a database for a system.

    my system will be for "CCS" department under CCS department -----------------------it has 3 courses --- "BSIT", "BSCS", ACT" every year level has 2 semesters as my professor said my thesis is aimed to 1. show the present (year level ex.4thyear, semester ex.1st, and grade) by searching...
  7. R

    computed column formula HELP!

    i got two columns in mysql 2005 Grade and Remarks i need to do is.. when i input integers in grade column 1,1.25,1.50,1.75,2,2.25,2.50,2.75,3 then Remarks will show PASSED and when Grade is 4 up remarks will show FAILED (OPTIONAL)---------------------- if Grade is null - then Remarks will...
  8. R

    my computed column doesn't work when my fill command is activated

    i added the database and table by using the "add new data source" so i can edit the dataset in the dataset designer mode for putting the expression IIF(Grade >=4, 'Failed', IIF(Grade IN (1,1.25,1.50,1.75,2,2.25,2.50,2.75,3), 'PASSED','UNKNOWN')) the database and table is made from sql2005...
  9. R

    my computed column doesn't work when my fill command is activated

    [windows forms] when i experimented.. my computed column doesn't work when my fill command is activated i mean the command to show the record of my table.. but when i take off the code for the fill command.. the computed column works..
  10. R

    binding a dataset(computer column) to a datagridview

    thank you sir i will try it when i got home. because i dont have internet connection in my house.. so i go out to town just to surf internet to ask for questions. thank you for your reply. i will try.. sorry for the computer * yes its computed.. just have some sticky keys
  11. R

    binding a dataset(computer column) to a datagridview

    i added my main database through the add new data sources.. then i made the computer column by project add new dataset then add column then i set the expression property
  12. R

    binding a dataset(computer column) to a datagridview

    the data tab that has data property name datasource valuemember displaymember is not there.. i dunno why.. so i cant choose to bind my computed dataset
  13. R

    binding a dataset(computer column) to a datagridview

    before posting i searched in google and youtube. but still i cant figure it out. maybe someone can simplify it to me.. i watched a video from youtube http://www.youtube.com/watch?v=h6PYx2MgOCQ but i cant figure out why.. some properties arent showing in my vb just like the one needed in the...
Back
Top