Search:

Type: Posts; User: thebuffalo

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    39
    Views
    4,768

    Re: Sony Pulls Interview due to threats

    Do you think that could be why Sony pulled the movie? Because they are a Japanese company?



    This is exactly how I feel, I really wanted to see the movie, 2 of my favorite actors. I also think...
  2. Replies
    39
    Views
    4,768

    Sony Pulls Interview due to threats

    Sony has officially pulled the movie "The Interview" from theaters.

    The hackers stated:

    weeks ago;


    The U.S. Government has stated that the "Guardians of Peace" are tied to North Korea, but...
  3. Replies
    6
    Views
    2,095

    Re: Dapper Idb Execute Data Type Mismatch

    This is about all I could find on it

    and this


    public static int Execute(this IDbConnection cnn, CommandDefinition command);
    //
    // Summary:
    // Execute...
  4. Re: Xbox One games are attached to Xbox Live account?

    This is the truth. It took me a year and a half to beat the whole Super Mario bros on Super Nintendo. The one with yoshi and the really big map with all the levels.
  5. Replies
    6
    Views
    2,095

    Re: Dapper Idb Execute Data Type Mismatch

    It didn't make a difference, I made my own loop that basically does the same thing at the dapper query. The problem was the Control_Number, I fixed it in my loop, but not for my dapper command..
    ...
  6. Replies
    6
    Views
    2,095

    Dapper Idb Execute Data Type Mismatch

    Hey friends

    I am trying to use my IDBConnection with Dapper to execute multiple commands on the same line quickly, if I just do one command with my code, it works fine, but when I use my...
  7. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    Okay I figured it out, apparently Json works with lists and my data was a list

    so it was

    {$id:1} etc etc etc
    {$id:2} etc etc etc
    {page} everything i want

    So I had to make a class "root"
  8. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    Im back in the office, still stuck at the same spot, I can't seem to get the DeserializeObject to work no matter how much I change things around
  9. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    Can you explain more on this? As far as I know, I made a property for everything I wanted out of the Json

    public class Order
    {
    public string ControlNumber { get; set; }
    ...
  10. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    Actually, I need some more answers

    My next function does practically the same thing but I am returning more properties, I get the response, but it isn't deserializing.


    This is the function
    ...
  11. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    {
    var reader = new StreamReader(webResp.GetResponseStream());
    string s = reader.ReadToEnd();
    var json = Json.DeserialiseJSon<Search>(s);
    ...
  12. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    The issue is the serialization, 's' has the full return in it, some 500 lines of data, all in Json format



    Looks like this but much much longer, bolded is what I am trying to retrieve.


    I...
  13. Replies
    12
    Views
    3,426

    Re: Json Converter from HttpRequest

    The srchID is null after the serialization runs. So its not a blank value.

    I am using the standard System.Runtime.Serialization, one of my colleagues used it in an almost similar situation and he...
  14. Thread: Ferguson

    by thebuffalo
    Replies
    61
    Views
    5,863

    Re: Ferguson

    I think the rioting is worse than the original problem

    From what my local media station has told me, the unarmed black male stole cigars from a convenience store, the police were called, the...
  15. Replies
    12
    Views
    3,426

    [RESOLVED] Json Converter from HttpRequest

    Hi I will start by saying that this is my first C# application ever. I have a lot of experience with VB .NET.

    I am sending out a few HttpRequests to get information I need out of a Json return.
    ...
  16. Thread: I'm back.

    by thebuffalo
    Replies
    16
    Views
    1,563

    Re: I'm back.

    Hey i'm back too
  17. Replies
    10
    Views
    2,360

    Re: Rock paper scissors code problem

    Never done this before but you should try something like this for your choices ( rock, paper, scissors )


    Public Class rpsItem
    Public Property Text() As String
    Get
    ...
  18. VS 2010 Re: When you begin creating an application, what........

    I have never had a complex enough project to where I actually had to plan it out on paper, I can usually just plan it in my head and remember it.

    Sometimes I make little boxes with arrows and...
  19. Replies
    5
    Views
    671

    VS 2010 Re: Late binding error

    Yeah it has Text value and the Value

    The text is what is shown, the Value is the true value, but I don't think thats your problem

    I think your problem is that 'ci' is not a CheckedItem

    You...
  20. Replies
    5
    Views
    671

    VS 2010 Re: Late binding error

    Does your ListView CheckedItems have a Text value?

    Not much that can go wrong here, you are basically dealing with another form of object reference error
  21. Re: Moving on from Visual Basic 6

    You should download the latest Microsoft Visual Studio Express edition and begin writing simple windows forms in VB .Net
  22. Replies
    4
    Views
    684

    VS 2010 Re: selecting datagridview rows

    DataGridView.CurrentRow.Cells(CellIndex).Value.ToString


    If you wanted the whole row, something like this:


    For i = 0 to DataGridView.ColumnCount - 1...
  23. Replies
    5
    Views
    1,068

    VS 2012 Re: Auto fill on PK doesn't work.....

    Looks to me like you aren't having your AccountID auto increment, you should never be inserting a value into a PK as it auto increments when new records are added
  24. Replies
    40
    Views
    8,176

    VS 2013 Re: help sending email via vb.net

    According to the error, you are not Authenticated.

    What that means is, you did not log in.

    SmtpClient.Credentials = New Net.NetworkCredential("Your Email Login", "Your Email Password")

    You...
  25. Replies
    0
    Views
    4,352

    VS 2010 Access PIVOT Query with DataTable

    I am trying to use a PIVOT query to get information based on Events in my Log table per Hour(DateChanged)

    I get the column names (StartStatus, EndStatus, TOTAL) but I do not get the Hour pivot...
  26. Replies
    40
    Views
    8,176

    VS 2013 Re: help sending email via vb.net

    Try
    Dim SmtpClient As New SmtpClient("smtp.gmail.com", 587)
    SmtpClient.Credentials = New Net.NetworkCredential("Your Email Login", "Your Email Password")
    ...
  27. Replies
    40
    Views
    8,176

    VS 2013 Re: help sending email via vb.net

    emailmessage.From = New MailAddress("email here")
    emailmessage.To.Add("email here")
    emailmessage.Subject = (TextBox1.Text)
    emailmessage.Body =...
  28. VS 2010 Re: [RESOLVED] OleDB Error - Semi-Complex query

    I think either way I would have to check the selected cell because the cell contains the "user"

    The other DGV datasource is a datatable but it is declared inside of a function

    Public...
  29. VS 2010 Re: [RESOLVED] OleDB Error - Semi-Complex query

    I think the Pivot will work for the DGV because essentially it is just adding columns to my DataTable that are 0 ( 12:00AM ), 1 (1:00 AM), 2 (2:00 AM), etc

    The problem is currently my ByVal user...
  30. VS 2010 Re: OleDB Error - Semi-Complex query

    cmdtext = "TRANSFORM Count(Log.ControlNumber) AS CountOfControlNumber "
    cmdtext = cmdtext + "SELECT Log.User, Log.StartStatus, Log.EndStatus, Count(Log.ControlNumber) AS TOTAL "
    ...
  31. VS 2010 Re: OleDB Error - Semi-Complex query

    cmdtext = "TRANSFORM Count(Log.ControlNumber) AS CountOfControlNumber "
    cmdtext = cmdtext + "SELECT Log.User, Log.StartStatus, Log.EndStatus, Count(Log.ControlNumber) AS TOTAL "
    ...
  32. Re: StreamWriter issue - file not found

    Dim fileName As String = OpenFileDialog.FileName

    Dim filename As String



    double declaring the string
  33. Replies
    5
    Views
    1,155

    VS 2010 Re: Working With Registry

    To access only the date you would do something like

    ndate As Date
    ndate.ToString("MM-dd-yyyy")

    then it is no longer a date, but a string

    hope this helps
  34. Replies
    40
    Views
    8,176

    VS 2013 Re: help sending email via vb.net

    Public Sub SendEmail(ByVal toAddress As String)
    Dim SmtpServer As New SmtpClient("smtp.gmail.com", 587)
    SmtpServer.Credentials = New Net.NetworkCredential("Email@gmail.com",...
  35. VS 2010 [RESOLVED] OleDB Error - Semi-Complex query

    So I am trying to monitor events in my Log database using a semi-complex query, the query works in Access perfectly fine, but when I try to run it in my application, I get the same error every time....
  36. Replies
    2
    Views
    619

    Object Reference Error

    I cannot figure out why I am getting this object reference error...

    I am getting a day log for a timeclock and as I am filling my ViewModel for my MVC application, I am getting this object...
  37. VS 2013 [RESOLVED] jscript ajax post from view to controller

    Hey guys I am new to MVC, javascript, ajax, and C#. Fresh over from VB .Net. I am working with MVC 5 at the moment. I have a jQuery datepicker in a View and onSelect I have it doing a function in...
  38. VS 2010 Re: How do I uise a SQLCompact SDF in App_Data

    Connection string "Data Source=ScottWeb\App_Data\MembershipDB.sdf;Persist Security Info=False;" was not found.

    I get that with all of them.



    Trying this now....

    Connection string "Data...
  39. VS 2010 How do I uise a SQLCompact SDF in App_Data

    Topic title

    List of connection strings that don't work.

    Data Source=~\App_Data\MembershipDB.sdf;Persist Security Info=False;
    Data Source=\App_Data\MembershipDB.sdf;Persist Security Info=False;...
  40. Replies
    1
    Views
    1,376

    C# Accessing Data - Switching from VB

    So I'm switching from VB .NET and starting my first MVC 4 application at the same time, I'm doing all the code in C#.

    I'm making my login check that connects to my database and I am having trouble...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width