Search results for query: *

  • Users: ssfftt
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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...
  4. 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
  5. 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...
  6. S

    deployment of vb.net application with MSSQL db

    I built my application using VB.NET 2003, MSSQL database which is hosted locally. How can i build the deployment file? plz help in details, i am new
  7. S

    whats wrong with my sqlread?

    here is the code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try If ModuleUser.frmCRCurTestDetails.SqlConnectionGetRptTitleValues.State = ConnectionState.Closed Then...
  8. S

    creating my new report (new to crystal report)

    I use vb.net and MSsql. 1. In my report's "header" field, i want to display a details of the current user. (the user name is a unique key in db table and the current user name is held in my program: datamoduleUser.userName, i can code a dataset, dataadapter to select the details, just not suer...
  9. S

    "8/12/2005 11:05:01 PM" in db, but only "8/12/2005" appears in datagrid

    "8/12/2005 11:05:01 PM" in db, but only "8/12/2005" appears in datagrid i have a dabacolumn "startDate" that contains data in a format as : "8/12/2005 11:05:01 PM" when i fill this table into a dataset and bind it with a datagrid, at run time the startDate column in datagrid only shows like...
  10. S

    disable horizontal scrolling of datagrid

    does anyone know how to disable horizontal scrolling of datagrid that has databinding?
  11. S

    "object instance not set to an instance of an object vb.net" happens when switch form

    "object instance not set to an instance of an object vb.net" happens when switch form i have these 2 lines of code causing problem "object instance not set to an instance of an object vb.net" : dim frm2 as new frm2 frm2.DsGetAllQs.Clear()...
  12. S

    check whether a form is shown

    I have code to show a form: frmAAA.show I want to have some code to check whether a form is shown. that is, to figure out whether frmAAA.show is executed. Can anyone help on code plz? e.g. to check a connection, we can have: if not connection.state = connected. but there is no "state"...
  13. S

    a textbox only accept numeric value?

    how can i make a textbox only accept numeric value? (e.g. integer, double or decimal)? is it possible to do it in design view? or i have to code it? To validate numeric value in coding before pass the value to further process is a pain for me, can anyone help plz?
  14. S

    change background color of disabled txt field

    when i set txtAAA.enable = False, it goes gray at runtime, is it possible to set a text field not change the color to gray when it's disabled?
  15. S

    radiobuttons don't function as expected on forms that have databound fields

    check out the code below MsgBox(ModuleUser.frmUserRegistration.txtGender.Text) 'get gender field value for display If ModuleUser.frmUserRegistration.txtGender.Text = UCase("m") Then 'check male radiobox when user is a male...
  16. S

    pk row record number?

    in MSSQL db, how can i keep the pk(e.g. userID) in a consistent sequence of number? sometimes it goes: 1, 2, 3, 4, 5, 100, 150, 235, 236. Is it possible to make it like: 1,2,3,4,5,6,7,8,9 ? plz help
  17. S

    bold part of a message

    does anyone know how to bold part of a message? e.g. for msg "thx for joining us, ABC", i want to bold "ABC", is it possible?also about changing color for part of the message, is it possible?plz help
  18. S

    need help on messages

    hi experts, i want to program 2 messages while click on a button "submit". 1) when successful, i want to show a message with a tick symble on it and text saying "successful"2) when unsuccessful, i want to show a message with a cross symble on it and text saying "unsuccessful"can anyone help me...
  19. S

    problem updating db table after delete row(s) from dbgrid

    [solved]problem updating db table after delete row(s) from dbgrid I have a dbGrid that has databinding to a table RESULT in mssql db, i have these lines of code for removing selected record from table RESULT: DsCompareResults.Tables("RESULT").Rows(Me.BindingContext(DsCompareResults...
  20. S

    get other columns from base on selected row in dbgrid

    [solved]get other columns from base on selected row in dbgrid i have a dbgrid with databinding to mssql db table "RESULTS", the dbgrid displays all results that belong to currrent logged in user. the select sql is: SELECT RESULT.STARTTIME, RESULT.ENDTIME, RESULT.TOTALMARKS, RESULT.GRADE FROM...
Back
Top