Search results for query: *

  • Users: Pace
  • Order by date
  1. Pace

    Databound label text property

    Hi guys, Thanks for your help! Im totally sorry I wasn't understanding properly! I haddnt been sleeping properly lately and therefore ive had a lot of mind blank... Anyway im refreshed, and here is my now working code if anyone is having this problem; PrivateSub...
  2. Pace

    Databound label text property

    I just dont seem to get anywhere with this one... If by any chance someone still reads this, here is the code im using; Private Sub formDirectReceipt_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim strCnn, strSQL As String strCnn =...
  3. Pace

    Databound label text property

    I know... its just im really struggling with this, I dont want to add my own colums using .add with a description, im using a DataAdapter to pull that information from a database... I'm not convinced I understand what you are saying properly so im doing my best to interperit it. My best guess...
  4. Pace

    Databound label text property

    thats correcct vis. I cant get it to change... its poor though as I have a lot of stored procedures and data changes on the go, now having this problem I feel so stupid that I cant get something as seemingly simple as this to work.
  5. Pace

    Databound label text property

    Thanks again JMC! Im still not getting anywhere... im not sure if its to do with my dataset? Here is some code of whats happening... PrivateSub formDirectReceipt_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load...
  6. Pace

    Databound label text property

    jmc im sorry if I have offended you. I tired this as soon as I got in the office before my coffee and I wasnt seeing the appropriate results... now with coffe having another go I can see that im starting to make progress... Once again I apologise and thank you for your time. Pace
  7. Pace

    Databound label text property

    Hi, is this solution based on the .Net 1.1 platform?
  8. Pace

    Databound label text property

    Databound label text property (RESOLVED) Hi, I have a form with a combo box... I have a label that is bound to a column that displays info based on whats selected in the combo. It looks fine when I first load the form. When I change the index of the CBO the text of the label stays the same. I...
  9. Pace

    Combo Box and Button behaviour

    Hi please post any code that is associated to the combo box ignoring any of the windows designer generated code, Thanks
  10. Pace

    Splash Page problem (VB.Net 2003)

    Hi please post the solution anyway so that others can find it. In my experience you should go to the "My Project" page of your project and choose the appropriate start form. Thanks, Pace
  11. Pace

    INSERT and DELETE Problem

    Just try adding the red piece of code also.
  12. Pace

    Ringtones & Wallpapers

    Well thats not really VB... if it were smartphone then you can use VB in winCE but seeing as were a friendly bunch I posted some links that might help you... http://www.symbian.com/developer/sdks/index.asp http://www.forum.nokia.com/codewarrior http://my-symbian.com/forum/...
  13. Pace

    how to compare string in vb.net

    izza if you start a topic on this we might be able to help you if you show some code. Regards, Pace
  14. Pace

    Ringtones & Wallpapers

    Smartphones or Symbian?
  15. Pace

    Whats wrong with this code ? (Datagrid Update)

    The problem is unless you stop editing, it wont allow an update... Try Me.YourBindingSource.EndEdit() Me.SqlDataAdapter.Update(Me.YourDataSet) Catch ex As Exception MsgBox(ex.ToString) End Try If you are using .Net 1.1 then you will need; Me.BindingContext(DsYourDataSet...
  16. Pace

    pass params + vars to stored proc

    @ Anyone for reference... and if this helped you, post :cool: Dim cmd As New SqlClient.SqlCommand With cmd .CommandText = "yourProcedureName" .CommandType = CommandType.StoredProcedure .Connection = New SqlConnection(My.Settings.YourConnectionString) .Parameters.Add("@Name"...
  17. Pace

    Data cannot be saved into DB

    Then you will need; Me.BindingSource.EndEdit() Me.YourTableAdapter.Update(Me.YourRecordset)
  18. Pace

    problem with a function

    if its a function wouldn't you be passing it something?
  19. Pace

    outlook (create new message)

    There is a thread somewhere on creating your own simple mail server and app, try a search ;-)
  20. Pace

    Data cannot be saved into DB

    sorry vis... anyway I found your answer cc96ai You need to use this command. Me.BindingContext(DsYourDataSet, "DbTableName").EndCurrentEdit() so if I had a dataset names DsCust which was to update the Customers table it would look like Me.BindingContext(DsCust...
Back
Top