CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: mac-duff

Page 1 of 2 1 2

Search: Search took 0.14 seconds.

  1. WCF Client with App.config - Could not find endpoint element with name

    Hi there,
    I am new with WCF and trying to write a app which works with a client and a standard windows service. So I generated the app.config file with the svcutil app and I get this file.

    ...
  2. Replies
    1
    Views
    651

    Re: Query in DataSet, how to run in code

    I got it :D,

    u have to change the data source designer the ExecuteMode to Scalar and later in the code u can call it by:


    ...
  3. Replies
    1
    Views
    651

    Query in DataSet, how to run in code

    Hello,

    I have created a query in the DataSet Designer and now I would like to run this in a code to get the result of the query. Its just number which I get back and with this number I would like...
  4. Re: ComboBox requieres selected value when connected by Datasource

    I deleted now the combox box which I dropped out of the data source and created one out of the toolbox, connected it with the table and now its working

    Thx ;)
  5. Re: ComboBox requieres selected value when connected by Datasource

    just wanna that the combobox doesnt give attention to what it is selected because later I just need the value which is selected for another sql query
  6. Replies
    3
    Views
    2,459

    Re: TableAdapter Update

    well, I have a Datagridview with this columns:

    SoftwareID | Name | Version | PC

    which consists out of two table:

    SoftwareID | Version

    and
  7. Re: ComboBox requieres selected value when connected by Datasource

    Good point, but when I try to change this value for the field to Nothing or Empty it tells me, it is not allowed. It makes sense because those are primary keys but in the view later I just want to...
  8. ComboBox requieres selected value when connected by Datasource

    Good morning,

    I am using a combobox which is connected by data source with a table. On this table I do a Select distinct with some filters. Everything is fine except the fact that when I click on...
  9. DateTimePicker -Time- jump to next datetime

    Hi,

    I am using a datetimepicker where I have to introduce a time. The Problem is after I finished the first hour, it doesnt jump automatically to the minute section, I have to do it by the right...
  10. Replies
    3
    Views
    2,459

    TableAdapter Update

    Hello,

    to refresh a Datagridview I was using the Me.TableAdapterManager.UpdateAll(Me.OcswebDataSet) command which was working quite well because it also realized a change in the table.

    But now...
  11. Replies
    8
    Views
    4,211

    Re: Delete Row From DataGridView by Checkbox

    Hi,

    sorry, but what do u mean with m_BatchTable,?

    Can I not just close the View and reload it?

    Edit:
    O is it probably bcause I have it in a DoWorkEvent?
  12. Replies
    8
    Views
    4,211

    Re: Delete Row From DataGridView by Checkbox

    Hello,

    ok, I ve tried it now with a sql statement but I still receive the same error:



    For Each row As DataGridViewRow In Database_installDataGridView.Rows
    If Not...
  13. Replies
    8
    Views
    4,211

    Re: Delete Row From DataGridView by Checkbox

    Hi,

    sorry, I dont understand a word ;) well, some yes but I dont get the sense :/
  14. Replies
    8
    Views
    4,211

    Delete Row From DataGridView by Checkbox

    Hello,

    I am using a datagridview where I added a checkbox column. Now I want delete these rows where I marked the checkbox and finally click the delete button. Here is my code



    For...
  15. Replies
    5
    Views
    4,691

    Re: [RESOLVED] Delete Row From DataGridView

    Hi,
    I am also trying to delete a row by a button click. I added a new column with a checkbox which I am going to use like this:


    For Each row As DataGridViewRow In...
  16. Replies
    0
    Views
    1,825

    Internet_open_type_direct

    Hello,

    I am looking for a way to disable in one window of VB.Net the local proxy settings which have been set in the Internet Explorer Options. I found a lot about how to set a proxy but never...
  17. Replies
    6
    Views
    5,859

    Re: Password Reset in IBM iSeries

    thanks,

    I will take a look on that
  18. Replies
    6
    Views
    5,859

    Re: Password Reset in IBM iSeries

    hi,
    no, I am not talking about the hard coded stuff.

    My account eg. has admin rights and I can reset other user accounts. Right now I have to log on to the iSeries, do some pints and finally I...
  19. Replies
    6
    Views
    5,859

    Re: Password Reset in IBM iSeries

    sorry, the org. code is

    as400.ChangePassword(Chr(34) & TextBox_Username.Text & Chr(34), "OLDPASSWORD", "NEWPASSWORD")

    where I have to set the old password
  20. Replies
    6
    Views
    5,859

    Password Reset in IBM iSeries

    Hello,

    does anybody have some code how can I reset a user account in iSeries?

    Actually we have to log on to As400 with our account, write down the username, receive a password and then logon...
  21. Replies
    4
    Views
    969

    Re: Run sub each minute

    Thanks, could do it with the timer:



    Private Sub timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    GetLast()
    End Sub
  22. Replies
    4
    Views
    969

    Run sub each minute

    Hi,

    I want check a text file each minute for a change. How Can I start this procedure each minute?

    Thanks
  23. Replies
    0
    Views
    902

    Two Datasources?

    Hello,

    is it possible to add two datasources to one report and also activate the report option: Select Distinct Records?

    Thanks
  24. Replies
    5
    Views
    3,979

    Re: Checkbox in Datagridview with Datasource

    well, I dont know what happened but now it works... its really curiously because I use now the same setting as in my first post.

    But now the update button comes up with an error....


    edit:...
  25. Replies
    5
    Views
    3,979

    Re: Checkbox in Datagridview with Datasource

    but I have a checkbox in a datagridview, isnt it a different?
Results 1 to 25 of 41
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured