Search results for query: *

  1. S

    populate columns in MSSQL table into Treeview

    here u go Private Sub getEntireList() Try ModuleUser.frmTestList1.TVTests.Nodes.Clear() If ModuleUser.frmTestList1.SqlConnectionTest.State = ConnectionState.Closed Then ModuleUser.frmTestList1.SqlConnectionTest.Open() End If 'retrieve all categories from table CATEGORY and store into...
  2. S

    populate columns in MSSQL table into Treeview

    hi sridhar and cheetah, its been a year since i solved this problem. i am @ work atm, i will try to dig it up for you soon as i get home tonite :) be aware that it was a .net 2003 project
  3. S

    Re: how to give value to parameter in a query of dataset in C#.net2005?

    thx jmcilhinney, Sorry for posting it to the wrong place. because this forum is where I go very often, and get most help from, and also this topic is not really language specific. I tried to generate query without the single quotes around @CNAME, it gave me this error when i click on "next"...
  4. S

    Re: how to give value to parameter in a query of dataset in C#.net2005?

    Re: how to give value to parameter in a query of dataset in C#.net2005? the query is for FillByCNPending is:SELECT ServiceID, ServiceDeliveredDate, CustomerName, FROM [Freedom Scooter Service Reminder]WHERE (CustomerName = '@CNAME')AND (ServiceDeliveredDate IS NULL)my code...
  5. S

    disable stretching window

    thx, got it~
  6. S

    disable stretching window

    I can disable the minimizeBox and the maximizeBox, but how to disable user being able to stretch the window by dragging the window's border? plz help
  7. S

    crystal report problem when converting project from .net 2003 to .net 2005

    I developed an application using vb.net 2003, which contains crystal report, in the code, i gave the parameter values, so that when "report" button is clicked, the report automatically displays itself with given parameter values.however, i opened this application within vb.net 2005, and...
  8. S

    use flash within vb.net application

    kurom, could you plz help more on how to attach the flash to the form? Is it the same way as John-H described? if so, where should i put the code John-H suggested?
  9. S

    use flash within vb.net application

    thx kulrom, you are right, i just want a starting movie before login form appears. also John-H, thx for your help :) I am implementing your ideas atm, will feedback soon.
  10. S

    use flash within vb.net application

    I have developed a simple application, my friend designed a startup flash animation (.swf file) for me, but i have no idea how to combine this file with my application so that it will appear every time when i run the exe file of my application. plz help
  11. S

    my first experience distributing the new-built sql db onto client machine?

    thanks tarik, i appreciate ur help, and i think i will learn how to do this in the links u provided, cheers
  12. S

    my first experience distributing the new-built sql db onto client machine?

    hi i am new to mssql db stuff. I just developed my first VB.NET application and it uses a mssql database which is hosted locally on my development machine. I built the deployment msi file for my application which can be installed easily on client machine, but have no idea how to move the mssql...
  13. S

    disable horizontal scrolling of datagrid

    cheers, David, very helpful information. :)
  14. S

    pk row record number?

    ok, enough, the red words was meant to apologize in a way that we both feel comfortable, if it didnt achieve it's purpose, i am sorry for my bad english expression. and more, i never insult ppl in my life, not even trying! I appreciate every one who helps me, if u lived near me, i'd even bring u...
  15. S

    db login info problem

    sounds much better than my idea, thx, i will try it out~
  16. S

    deployment of vb.net application with MSSQL db

    i built an msi file with the application inside. when i installed it in another pc which has vb.net2003, the framework and mssql enterprise installed, the program doesnt work, error: SQL server does not exisit what should i do now? 1) should i install something else in target pc? 2) how can i...
  17. S

    whats wrong with my sqlread?

    thx techgnome, i worked it out earlier time, thats exactly what you pointed out, dim has to be outside the try. cheers~
  18. S

    db login info problem

    so your dsReports holds data from both 2 dataAdapter ?
  19. S

    display record by retrieving parameter value in module

    i worked it out similar to your suggestion: reportviewer.ReportSource.myreport1 cheers, thx for help, jazz
  20. S

    pk row record number?

    jmcilhinney, plz take it easy, i was just kidding, u know when u get a bit headache you behave stupid :) thx kulrom, I think you r right. but maybe not, because I dont do any add or modification to the data in the datagrid, only remove selected record and refresh the grid. I dont use dataset...
Back
Top