Search:

Type: Posts; User: TATARPRO

Page 1 of 7 1 2 3 4

Search: Search took 0.06 seconds.

  1. VS 2015 Re: Datagridview - 3 days of banging head against a wall

    In order to update a database record from your datagridview directly, you have to use the CellChanged event of the datagridview then get the specific row which has changed. From there, you can...
  2. VS 2015 Re: Removing an object from a form

    But do you know that that button is part of the custom control? So if you click the button, the click event will take place in the control and the parent control will not know a thing about its click...
  3. VS 2015 [RESOLVED] Removing an object from a form

    I created a user control(I.e a custom control) and the control has a close button on it. I now add the control on a form. I want that when I click the close button of the control, the control should...
  4. VS 2015 Re: Convert string date to DatenTime object

    What if the user's date time format is not MM/DD/yyyy hh:mm:ss ?
  5. VS 2015 [RESOLVED] Convert string date to DatenTime object

    I have a string like this 21/12/2018 17:34:54 and I want to convert it to DateTime object but all the overloads does not support this type they only support the written format like 22 Dec, 2018
    I am...
  6. VS 2015 [RESOLVED] Retrieving original firm of encrypted text

    I used MD5 Algorithm in .Net to encrypt this text
    Using System
    And I got this

    63 D1 AF 10 9E 23 7D F7 3B D2 26 EE 59 31 9F 0D


    Is it possible to retrieve back the original data?
  7. VS 2015 Re: How to dynamically add control to a form

    I was thinking that if I only want to be adding it to the collection and then it adding to the control itself, I will need to create an event that triggers if the Options.Count() changes. Right?
  8. VS 2015 Re: How to dynamically add control to a form

    My problem is this, I don't want to be adding the Option control in the group box,l like this


    Me.grpbox.Controls.Add(NewOption)
    Me.Options.Add(NewOption)

    I want it to be done automatically...
  9. VS 2015 Re: How to dynamically add control to a form

    That was error in expression
  10. VS 2013 Re: Exception handing block not handling an exception

    Okay try taking off those using blocks and declare them like normal variables, then dispose whatever object you'll be using by adding a finally block and placing the code inside.
  11. VS 2013 Re: Exception handing block not handling an exception

    Are you sure you are catching the right exception? It may not be cause by a WebException but an IOException.
    Try validate that properly.
  12. VS 2015 Re: How to dynamically add control to a form

    Thanks alot, I think you understand what I mean.
    Actually, I'm not adding the Option control to the form but I'm adding it to the Question control. The Option dictionary is like the collection for...
  13. VS 2015 Re: How to dynamically add control to a form

    Thanks alot, I think you understand what I mean.
    Actually, I'm not adding the Option control to the form but I'm adding it to the Question control. The Option dictionary is like the collection for...
  14. Replies
    13
    Views
    1,351

    VS 2017 Re: How to fill in an empty ComboBox

    If u want to populate several combos with different data tables, why not retrieve the whole dataset then query whatever you want?
  15. Replies
    13
    Views
    1,351

    VS 2017 Re: How to fill in an empty ComboBox

    Please can u explain your problem clearer?
  16. Re: How to use the same conenction to database on multiple fomrs

    According to what you are saying here, I think you want the connection to be active even on another opened form, right?
    If so, I may not advise you for that option though it's possible for security...
  17. Re: How to use the same conenction to database on multiple fomrs

    According to what you are saying here, I think you want the connection to be active even on another opened form, right?
    If so, I may not advise you for that option though it's possible for security...
  18. VS 2015 Re: How to dynamically add control to a form

    This is the Question control and the options inside it163661
  19. VS 2015 [RESOLVED] How to dynamically add control to a form

    I created a custom control called 'Option', now I want to use this 'Option' control which I created in another control called 'Question'. I created a button on the
    question control so that whenever...
  20. Replies
    7
    Views
    888

    VS 2012 Re: Error inserting data into database

    Thank you. It's now I see the error
  21. Replies
    7
    Views
    888

    VS 2012 Re: Error inserting data into database

    Thank you. It's now I see the error
  22. Replies
    7
    Views
    888

    VS 2012 Error inserting data into database

    I've been trying out this piece of code to insert data into the database but it's showing me 'incorrect syntax near ='


    Private Sub btnInsert_Click(sender As Object, e As EventArgs) Handles...
  23. How to use mySql instead of Microsoft SQL server

    Please can someone help me out on how I can use mySql in my database application instead of using Microsoft SQL server? Due to some reasons, I don't want to use Microsoft sql server.
  24. Re: How to fill a datagrid with Objects of the Class

    Instead of using this create a new instance of the streamReader, call the EndOfStream method of it, split and assign each data to its respective property



    Imports system.IO

    Public Class...
  25. VS 2013 Re: DataGridView ComboBox returning System.Data.DataRowView

    okay, using selectedIndex or selected item will always return a DataRow for you. So rather use its
    SelectedItem.Text method to get the item that is displayed and you have clicked
  26. Replies
    8
    Views
    1,177

    VS 2012 Re: Using web service

    Okay, I've resolved the issue. I didn't declare the new operator of the client as the service SoapService.

    Dim Client As New BristowServer.BristowServerSoap
    'then i can call its insert method...
  27. Replies
    8
    Views
    1,177

    VS 2012 Re: Using web service

    The intelligence does not show me the Insert method rather it shows


    InsertRequest
    InsertResponse
    RequestDataRequest
    RequestDataResponse
  28. Replies
    8
    Views
    1,177

    VS 2012 Re: Using web service

    Where it is underlined blue is my problem. How to send the request and receive back the responsefrom
  29. Replies
    8
    Views
    1,177

    VS 2012 Re: Using web service

    Oh sorry I posted two different methods.
    This is how I created the service method for RequestData

    Public Function Insert(ByVal UserId as String, ByVal TableName As String, ByVal Script As...
  30. Replies
    8
    Views
    1,177

    VS 2012 [RESOLVED] Using web service

    I have created a web service and i hosted it on another computer. Now, i want to consume the webservice and i loaded it from the computer which i used as my server and i added the service as a...
  31. VS 2012 Consuming webService from another computer

    I have created a web Service on a computer and I want to his it but I don't know how I can do that and how I can make egg the other program use the service.
    Hosting a website on IIS Server is quite...
  32. VS 2012 [RESOLVED] Raising timeElapsed Event in Class

    I have created this class and I want to raise the time elapsed event of the timer but the intellisense does not show me a way to do it this. Can someone help?


    public Class TimerEvent
    Dim...
  33. Replies
    2
    Views
    4,583

    VS 2012 Re: Order by descending for combobox

    Ok I've used the sorted=True and it worked
  34. Replies
    2
    Views
    4,583

    VS 2012 [RESOLVED] Order by descending for combobox

    I'm trying to order a combobox by descending order but the row in the function returns error

    Dim Item = CmbItems.Items.Cast(of Combo box)().OrderByDescending(Function(Item)...
  35. VS 2012 [RESOLVED] Converting datatable to a student object

    I have been trying to convert this datatable into a student object but it has been displaying "Expression of type 'System.Data.Datatable', which is not a collection type.



    Dim StudentList As...
  36. VS 2012 lOADING A PAGE IN A WEB BROWSER INSIDE A FORM

    I am trying to load a webpage (www.google.com) into a web browser object i created and filled it inside a form
    (i.e property dock) and when i put this code inside the form onload event, the program...
  37. VS 2010 Re: Reading data from a data table

    Okay thanks. It has worked now
  38. VS 2010 Re: Reading data from a data table

    I've gone through the documentation but I didn't see a property to access data in a specified cell.
  39. VS 2010 [RESOLVED] Reading data from a data table

    I am trying to read the data in a datatable but when I use
    MyTable.Rows(0).column(6).value()
    to get the value in cell 5, I can't access the object
  40. Replies
    2
    Views
    2,329

    Playing media on an asp.net webpage

    How can I play an audio file on an Asp.Net webpage?
Results 1 to 40 of 259
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width