Search:

Type: Posts; User: JackIlPazzo

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Cannot bind list of items in GridView column

    I'm building an application that show to user the live result of a matches series. I setup the structure of data as follows: `Countries->Leagues->Matches`
    In particular in the ViewModel I've created...
  2. Replies
    7
    Views
    2,022

    Re: Timer won't start after stop

    [duplicated message]
  3. Replies
    7
    Views
    2,022

    Re: Timer won't start after stop

    This in a sense gives me relief. My tests are working well, we'll see in production if there is something abnormal.
  4. Replies
    7
    Views
    2,022

    Re: Timer won't start after stop

    "If _worker1ShouldRun is set, set _worker1ShouldRun to false, suspend the timers, and run worker1."

    why you suspend both timers? Could you please post a code sample? I don't quite understand...
  5. Replies
    7
    Views
    2,022

    Re: Timer won't start after stop

    I managed this putting this condition inside worker2 DoWork:



    if(!worker1.IsBusy)
    {
    //execute worker2 activity
    }
    else
    {
  6. Replies
    7
    Views
    2,022

    Timer won't start after stop

    In my application I'm using two `Timer`, each `Timer` use a `BackgroundWorker`. Here the declaration:


    DispatcherTimer timer1 = new DispatcherTimer();
    DispatcherTimer timer2 = new...
  7. Replies
    1
    Views
    800

    How to translate the OlCategoryColor?

    I'm using `Microsoft.Office.Interop.Outlook;` that allows me to use the `OlCategoryColor`. In particular I've this:


    Dictionary<OlCategoryColor, KeyValuePair<string, string>> CategoryColor;
    ...
  8. Replies
    1
    Views
    458

    Can't stop BackgroudWorker

    I'm using `BackgroundWorker` for perform some operation in background, now in some case happean that the user click a button that execute an heavy operation, what I need is stop the previous instance...
  9. Best way to execute a method in async mode?

    Hi there,

    I've the following situation:



    public MainWindow()
    {
    InitializeComponent();
    StartSync();
  10. How to get a specific site tag without class?

    Hi there,

    I'm trying to get some data from this page, in particular, my goal is create an object with this field:

    137755

    How you can see from the image my goal is grab the blue checked...
  11. Replies
    0
    Views
    451

    Can't get specific tag content

    I'm trying to get a list of this tag: <td class="info-button button">

    actually I grabbed the html of the page succesfully, this is the content:



    <th colspan="5"><h3><span class="flag_16...
  12. Replies
    3
    Views
    997

    Re: Relational class model

    Interstin point of view, so should be like this:


    public class Country
    {
    public string Name { get; set; }
    }

    public class League
    {
  13. Replies
    3
    Views
    997

    Relational class model

    Hi there,

    I would ask if someone could check my class relation. In particular I've the following:


    public class Country
    {
    public string Name { get; set; }
    }
  14. Replies
    2
    Views
    1,211

    Re: Return specific type of a list?

    Uhm interesting suggestion, but I have something to clarify:

    Suppose that Article is a container of other resources, so I have:

    Article :Resource Container
    Item :Parent resource...
  15. Replies
    2
    Views
    1,211

    Return specific type of a list?

    Hello to all,

    I created a DLL that implements some methods to manage the sporting goods. The class of the .dll for the GET method is so declared:


    public class Article_GET
    {
    public...
  16. Replies
    6
    Views
    3,942

    Re: Scrape html with js and php?

    For run javascript code from php is at least a php extension that embed (or wrap arround) a Javascript engine, and as a consequence, allows one to execute Javascript on the server, from PHP.
    The...
  17. Replies
    6
    Views
    3,942

    Scrape html with js and php?

    Hello to all,

    Last week I started work on a parser in php to take the data from soccerway.com, the problem is that php as well as being a server-side language (thus some content that you upload...
  18. Replies
    1
    Views
    815

    How to deserialize different json?

    I have created a class that have a static method like this:



    public static string Connect(string Uri)
    {
    HttpWebRequest connection = WebRequest.Create(requestURI) as HttpWebRequest;
    ...
  19. Replies
    3
    Views
    2,053

    Re: Help to deserialize multiple json

    Could you provide a bit example, please? Thanks.
  20. Replies
    3
    Views
    2,053

    Help to deserialize multiple json

    Hi there,

    I'm a bit rusty with c# and I need assistance to deserialize multiple json. Actually I have this class:



    class Foo
    {
    public class Details
    {
  21. Can't change Label.Text from another form

    I'm trying to change the label text of Form1 from Form2, now I have this code for change the text:


    Form1.Label1.Text = "New record found"

    the code above is located in Form2, notice that: In...
  22. Replies
    0
    Views
    525

    .FILL doesn't working on NULL guid

    I've a table like this structure:

    http://i.stack.imgur.com/gimbt.png

    now, sometimes, the field: `resources_guid` could be null, in particular if is NULL I set a value of 0. I'm trying to fill...
  23. Equivalent password hash function for vb.net

    In my web application, before insert password in db, I create a random salt, and later I pass this salt to an hash function, like this:


    function generate_salt()
    {
    $max_length = 100;
    ...
  24. Re: Compare specific field from two different database table

    Hi there, thanks for the answer. Why you are using a oleb connection? I using MySQL command 'cause my DB are in MySQL.
  25. Compare specific field from two different database table

    I'm actually developing a synchronization tool in vb.net, I have two database that have on each table records field GUID, this field help to have the same PK on both database. On each record there is...
  26. How to assign value when a row is inserted?

    Hi there,

    I'm trying to set a second value to the cell of DataGridView, in particular as happean in the ComboBox like the DataBinding, for example:


    myComboBox.DisplayMember = "NAME"...
  27. Replies
    2
    Views
    1,146

    Re: keep two database sync?

    Yes, I already use the GUID. Infact each record created (I mean the appointments have an hash), this hash is unique. But for the moment this isn't a problem. I'm looking for a system that allow me to...
  28. Replies
    2
    Views
    1,146

    keep two database sync?

    I've created a web scheduler that allow my customers to take appointments with my company, all working well. Now I've another application in vb.net that doing the same with other functions for my...
  29. Replies
    3
    Views
    1,280

    Re: How to encode an array in json?

    What's WebMethod? I just want to know how I can story it in an array or dictionary is the same and made a json that's it. Thanks.
  30. Replies
    3
    Views
    1,280

    How to encode an array in json?

    Hi there,


    I'm a bit rusty with vb.net and I need your help for encoding this:


    ...
  31. Re: How to synchronize the data between two database?

    Unfortunately this does not depend on me, I can use two databases. Is there any tutorial for the Guid I searched the net and really do not understand how it can help me.
  32. How to synchronize the data between two database?

    I've developed an online scheduler that allow my customers to create an appointments with my beauty center. Now I've also a client application with more functions but I can also create appointment as...
  33. Replies
    7
    Views
    1,566

    Re: How to make a safety connection string?

    And there is no risk with this system? There is a tutorial that I can follow?
  34. Replies
    7
    Views
    1,566

    How to make a safety connection string?

    Hi there,

    for some reason I must develop an application in vb.net, now this application execute a connection with a database, for the moment I save the connectino details in the settings of...
  35. Re: How to access to a variable of another class?

    and for return the string is the same thing?
  36. How to access to a variable of another class?

    As title, I've this class:



    Imports MySql.Data.MySqlClient

    Public Class Connection

    Dim myCommand As New MySqlCommand
    Dim myAdapter As New MySqlDataAdapter
  37. Replies
    1
    Views
    1,391

    Best way to deserialize json?

    Hi there,

    could some one explain me how to deserialize this content:
    ...
  38. Re: How to get all values from a DropDown menu?

    I want create a JavaScript app because I need to convert the data grabbed in json and deserialize it with php..
  39. Re: How to get all values from a DropDown menu?

    It's not my website. I just want learn how to do it on the site provided.
  40. How to get all values from a DropDown menu?

    How to scrape all value from a DropDown menu in a website?
    For example in this website

    There is this DropDown menu:

    130365

    I want to get all value and save it into an array structure that's...
Results 1 to 40 of 184
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width