• Member Avatar for Suzie999
    Suzie999

    Created VS 2017 Community SQLEXPRESS

    Hi, I am following a walkthrough of [Entity Framework Code First to a New Database](https://msdn.microsoft.com/en-us/library/jj193542(v=vs.113).aspx) Everything appears to go as expected right through to the end of step 4, where …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in the string was not recognized as a valid datetime. there is an unknown word

    Try Convert.ToDateTime(DropDownListSearchRec.SelectedValue.ToString.());
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    I told my friend that the first line of defense against malware is to not log in as admin, but in the end she started to do it anyway, because …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    Thing is, the goal of the idea was to only hide the admin account, while still allowing the standard account to use admin account for those admin tasks, removing temptation …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    No restrictions on standars user account. I wonder if there is mis-communication here, do we agree that a standard (non admin) user acount can not perform tasks that require administrative …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    winkey x askes for password in dialog box, with original problem, no means of entering password.
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    I believe that is UAC. But I do not like the idea of standard account being able to carry out admin tasks, does that not make the point of standard …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    The only way I would advise to see the issue is to create a win 10 home VM. The default ans setup account is an admin account, create a standard …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    I mean when I try to start an admin cmd, I am prompted for admin username and password, but there are no text boxes to enter those details.
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Admin account problem

    it produces the password prompt, with no field to enter the password :(
  • Member Avatar for Suzie999
    Suzie999

    Created Admin account problem

    I'm setting up new install of win 10 home premium on a laptop for friend. After setting up the initial local admin account, I created standard local account for friend …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Single Responsibility

    I was thinking along similar lines, thanks. I have a WebTools class with many helper method I am going to adapt solid principles, three of them retrieve the source code …
  • Member Avatar for Suzie999
    Suzie999

    Edited Single Responsibility

    Hi all. I'm reading about SOLID way of coding and am only looking at single Responsibility of objects (S). I will be creating a string helper class and I'm wondering …
  • Member Avatar for Suzie999
    Suzie999

    Created Single Responsibility

    Hi all. I'm reading about SOLID way of coding and am only looking at single Responsibility of objects (S). I will be creating a string helper class and I'm wondering …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    I've decided to just override ToString method with a deliminator, send those bytes, split the string and convert values at other end. Thanks all.
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    You mean issues with different machine word size? Here is a demo class to show what I'm thinking of. Client calls ToByteArray on transaction class, and sends the resulting array …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    I looked at that, but from what I could tell, you have to jump through many hoops with regards padding issues with structures and such. I'll take another look, maybe …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    Thanks for your input. Yes It is to do with my project, I'm still exploring my options, and been waylayed a bit on coding tangents, which I welcome as I'm …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    I suppose using that reflection trick, I could do something like the following, but it's still a whole lot of headache. Debug.WriteLine("public byte[] ToByteArray()"); Debug.WriteLine("{"); Debug.WriteLine("byte[][] baArray = {"); Debug.WriteLine(""); …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Code / Method generation Visual studio 2015

    Forgot to mention, I got as far as Reflection and a way of printing out the type name and values of properties, but that's about it, I don't know if …
  • Member Avatar for Suzie999
    Suzie999

    Edited Code / Method generation Visual studio 2015

    Hi all, I have a lot of long boring work ahead of me, unless this long shot comes up roses. I have a lot of classes I need to add …
  • Member Avatar for Suzie999
    Suzie999

    Created Code / Method generation Visual studio 2015

    Hi all, I have a lot of long boring work ahead of me, unless this long shot comes up roses. I have a lot of classes I need to add …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Use both Ethernet and Wifi (USB) connections on a PC

    To use different applications on different adapters (internet connections) I have used forcebindip. https://r1ch.net/projects/forcebindip
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in Sending object over network

    Thank you, that has given me something to think about, and xml never even crossed my mind. Currently I am using system.net and system.net.sockets, and from those TcpClient class and …
  • Member Avatar for Suzie999
    Suzie999

    Edited Sending object over network

    Hi all. I'm working on a client server application, eventually to be a POS (point of sale) system. The model is something like, client (till) does not have access to …
  • Member Avatar for Suzie999
    Suzie999

    Edited Sending object over network

    Hi all. I'm working on a client server application, eventually to be a POS (point of sale) system. The model is something like, client (till) does not have access to …
  • Member Avatar for Suzie999
    Suzie999

    Created Sending object over network

    Hi all. I'm working on a client server application, eventually to be a POS (point of sale) system. The model is something like, client (till) does not have access to …
  • Member Avatar for Suzie999
    Suzie999

    Marked Solved Status for ServiceController Thread Id

    Hi all. I've had a good look around for info, and come up short. Does anyone know of a way to get the thread id under which a service is …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in ServiceController Thread Id

    Cheers, I've seen both those, they are linked in an article I linked earlier. I've got the service/subprocess tag now, (half the battle) just a short while I sould have …
  • Member Avatar for Suzie999
    Suzie999

    Replied To a Post in ServiceController Thread Id

    I found a tool what does exactly my current need, which is to extract the service name (if any) from a thread id. ScTagQuery http://www.winsiderss.com/tools/sctagquery/sctagquery.htm Here is sample output... C:\Users\User …

The End.