Search results for query: *

  1. Socarsky

    I developed a software by myself.

    This is latest updated version of my project, that's now more accurate to bring quiz's questions. And now It uses Settings, not registry . Here is the link to download: Enjoy and thanks for trying my project. https://drive.google.com/file/d/0ByDT8XZ_7-8vMS1ySHdRdXkwcmM/view?usp=sharing
  2. Socarsky

    Question The requested address is not valid in its context

    Host side works but client side gets thrown. I used in IPAddress.Loopback in client_Send() Dim tcpClient As New System.Net.Sockets.TcpClient Dim ipenpoint As IPEndPoint = New IPEndPoint(IPAddress.Loopback, 8000) tcpClient.Connect(ipenpoint) If I use IPAddress.Any then The requested address is...
  3. Socarsky

    Question The requested address is not valid in its context

    "The requested address is not valid in its context" come up my way not to get a good result to achieve my project done so how I can handle that? The program purposes to run on a couple difference computers that one of them is a host the other one is a client that they run in a same network to...
  4. Socarsky

    Question How do I get a report like the details of this thread?

    Might there someone to express a solution for my question?
  5. Socarsky

    Question How do I get a report like the details of this thread?

    Two queries retrieve data at the same time into two Dataset that they populated separately so that using them in one report like below. One of them retrieves sales details the other payment details both have relationship and as you can see one sales details row related two payment rows and...
  6. Socarsky

    Answered A data source instance has not been supplied for the data source 'DataSet1'

    The reason is being two DataSet1 object one of them is in the PrepareTheReport Sub, the other generated by GUI of VS2012.. then occuring a confusion when the Sub calls.
  7. Socarsky

    Answered A data source instance has not been supplied for the data source 'DataSet1'

    Actually the main reason related lack of a Datatable source. Thanks for helping 'Dim ds As New DataSet1 Dim dt As New DataTable Dim rds As New ReportDataSource("DataSet1", dt)
  8. Socarsky

    Answered A data source instance has not been supplied for the data source 'DataSet1'

    I am in a trouble with this thread's title that I could not solved yet even I spent a few hours. Btw, the report's build action is Embedded Resource.
  9. Socarsky

    Resolved Is there other AutoComplete methods or events?

    Precious.. Thanks John It's completely works well for typing and mouse selection.. Here is some code for a sample. Private Sub txtMagazaKodu_TextChanged(sender As Object, e As EventArgs) Handles txtMagazaKodu.TextChanged Try If sConn.State = ConnectionState.Closed Then...
  10. Socarsky

    Resolved Is there other AutoComplete methods or events?

    I have a Textbox on it set to AutoComplete custom collection from a database. Is there an event that fires when a user finds the value they want from the autocomplete list by typing string or choose it in the list by keyboard or mouse click? I tried normal Textbox Mouse or keyboard events don't...
  11. Socarsky

    Answered Something lack which causes an issue in CircularProgress

    You are completely right. I tried a couple things after your message and saw the matter. Actually I got the right for using Text property without any errors but at that time occurred another issues about controls and properties. Thanks a lot.. Here is a screenshot that shows the matter.
  12. Socarsky

    Answered Something lack which causes an issue in CircularProgress

    I couldn't figure out that why The Devcomponent's circularprogress has text property but mine does not have.. also mine circularprogress at the runtime has a border but the DevComponent's does not have.. IF you know a solution please type down here.
  13. Socarsky

    I developed a software by myself.

    I am happy to share my VB.Net project with everyone. (That is a vocabulary software to help users who wants to improve his vocabulary in a foreign language.) ---------- That is freeware software that I developed in VB.Net platform and it is only running in the MS Windows environment. That...
  14. Socarsky

    Answered Trouble with three controls

    you comment is out of my expectation.. I know such that things but the case I mentioned is difference.
  15. Socarsky

    Answered Trouble with three controls

    Yes exactly.. btw, I can read registry's values to assign their controls when the form loads. There is no problem at that phase.
  16. Socarsky

    Answered Trouble with three controls

    Private Sub chkPromptOnExit_CheckedChanged(sender As Object, e As EventArgs) Handles chkPromptOnExit.CheckedChanged If userOption_PromptExit <> chkPromptOnExit.Checked Then btnSave.Enabled = True End If End Sub Private Sub...
  17. Socarsky

    Answered Trouble with three controls

    I'm in trouble with three controls in a form. All those controls assigned by registry values when form loads. Two of them are CheckBoxes, the other one is a NumberUpDown control and I assigned 5 value to minimum value of the control that means it loads automatically when form calls...
  18. Socarsky

    Answered How to use a third party dll in my project as resource

    I exactly got it that you mentioned. So, now I agree with you and do that in the future. Actually I got a line of code and used it in my project to copy the dll somewhere or its ows folder, but after your point of view that no need to copy a dll file if we set it Copy Local property as True...
  19. Socarsky

    Answered How to use a third party dll in my project as resource

    I added a dll in my resources and use it like below but I think I should check it as a reference like I did before in the another project. My aim that used that dll file in my project and both parts of my project's executable file be simple one and used the dll in it that no need to copy the...
  20. Socarsky

    Resolved How can I carelate between string length and form size?

    I solved the matter, thanks Ian Private Sub MySub() Dim labelsLength As New List(Of Integer) With labelsLength .Add(Label1.Text.Length) .Add(Label2.Text.Length) .Add(Label3.Text.Length) .Add(Label4.Text.Length)...
Back
Top