Search:

Type: Posts; User: gjon

Page 1 of 12 1 2 3 4

Search: Search took 0.20 seconds.

  1. Re: What would cause a dynamic link library to no longer be found by my visual basic

    Thanks for the explanation. Well done.
  2. [RESOLVED] What would cause a dynamic link library to no longer be found by my visual basic prog

    My program used to run on my system just fine until I removed some other applications. Then the proggy was giving me a runtime error. The funny thing is that once I installed visual basic 6 and added...
  3. Re: 360 degrees is straight to the right, but I want 360 degrees to be straight up when t

    My bad, i used code snippet, thinking that it would work. I'm rusty.

    I think it's corrected now.
  4. [RESOLVED] 360 degrees is straight to the right, but I want 360 degrees to be straight up when t

    C#/VS2005

    360 degrees is straight to the right, but I want 360 degrees to be straight up when the line is drawn in my circle. Can someone please show or explain how I can adjust this?

    I am...
  5. Re: C#/VS2005 - How can I pass a listbox and it's selected index?

    Thank you.
  6. [RESOLVED] C#/VS2005 - How can I pass a listbox and it's selected index?

    I want to pass the selected index to a method. I have several listbox's and I want to figure out how I can pass that particular listbox's selected index to a method and then return some result. Not...
  7. Re: C#/VS2005 - The degree and where the line is to the edge of the circle do not seem to

    Thank you for the example. I will give it a look-see later tonight to see if it simplifies things for me.
  8. C#/VS2005 - The degree and where the line is to the edge of the circle do not seem to

    The circles are drawing properly and the line from the radius to the circumference appears to be drawing correctly, but I do not understand why 25 degrees is not appearing as 25 degrees. My lines are...
  9. Re: VS2005 C# a line from the center of a circle to a random point on the diameter o

    Ok, got past that part.

    I got incorrect cast at first, then switched everything to double.

    But now I get invalid arguments in the last line. I don't know why. Thank you so much for showing me...
  10. Re: VS2005 C# a line from the center of a circle to a random point on the diameter o

    Generate the degrees randomly.

    Random createRandom = new Random();
    createRandom.Next(0, 360);
    label1.Text = createRandom.ToString();

    The result is a string...
  11. VS2005 C# a line from the center of a circle to a random point on the diameter of t

    How to draw a line from the center of a circle to a random point on the diameter of that circle.

    I am hoping to make a lil' proggy that will help improve my ability to read dials at work. I...
  12. Re: App that will send local ip address to a remote app - How?

    Thank you
  13. Re: App that will send local ip address to a remote app - How?

    I want to be able to use remote desktop to connect to him. But I want to be able to do it without him having to always tell me what his new ip address is when it changes since it's dynamic ip. So I...
  14. [RESOLVED] App that will send local ip address to a remote app - How?

    I am hoping someone can point out what to begin with to try to have an application grab the local computer's ip address and then send it to a computer at a known ip address.
    Any ideas or suggestions...
  15. Re: Script/Batch file? Have a form field automatically have input text?

    I didn't know which forum to post this thread in, but I was hoping for a shell scripting solution using the command line/batch file.
    Sorry for the confusion, but I am hoping for a solution that...
  16. Re: Script/Batch file? Have a form field automatically have input text?

    Ok, I have found this for a batch file:

    start iexplore http://www.google.com

    But how do you add the part where I would like a specific name to go into the input field named q?
    input value...
  17. Script/Batch file? Have a form field automatically have input text?

    I was wondering if there was a way to set up some kind of script, etc. that would fill in a form field with a name when I double clicked that script on the desktop.
    For example, a web browser would...
  18. Re: C#/.Net/VS2005 - How can I write text onto the form of a webpage through

    Maybe it would be simpler to do it with an aspx page. Via a web page and it's form that I can create. After looking at the other samples, I believe they are far too complex for me to digest in a...
  19. Re: C#/.Net/VS2005 - How can I write text onto the form of a webpage through

    Thank you so much for that second link. That is absolutely amazing!
  20. Re: C#/.Net/VS2005 - How can I write text onto the form of a webpage through

    Thank you so much for the info. I will give it a go, never converted anything from one language to another. ;o
  21. C#/.Net/VS2005 - How can I write text onto the form of a webpage through

    C#/.Net/VS2005 - How can I write text onto the form of a webpage through the use of a windows form that I can write?

    My idea is that I would like the text I write into my windows form to paste...
  22. Re: Trying to update a value in the database. Asp.Net/C#/SQL/VS2005

    The ticks were the prob
  23. [RESOLVED] Trying to update a value in the database. Asp.Net/C#/SQL/VS2005

    I don't really know how to check why it's not working.
    I have a try/catch that tells me in the catch that it didn't succeed but not sure how to really know what's going on with it.

    Here's my...
  24. Re: How to? fill the list box from a particular table based on selection?

    Got this to work:
    SqlCommand comm = new SqlCommand("SELECT * FROM inventoryTbl WHERE categoryID = " + DropDownList1.SelectedValue, conn);
  25. Re: How to? fill the list box from a particular table based on selection?

    SqlCommand comm = new SqlCommand("SELECT * FROM " + DropDownList1.SelectedValue, conn);

    Seems like something like that should work, but I don't know if I need something like...
  26. Re: How to? fill the list box from a particular table based on selection?

    I have a table that has an id for each category of tables. The id in this table has an associated categoryID. The categoryID is a foreign key for all the other tables which are categories(tables) of...
  27. Re: How to? fill the list box from a particular table based on selection?

    This might be it, not sure though. Testing it now.

    SqlCommand comm = new SqlCommand("SELECT * FROM '%" + DropDownList1.SelectedIndex + "%'", conn);

    What does '% do?

    EDIT:
    Nope didn't work....
  28. [RESOLVED] How to? fill the list box from a particular table based on selection?

    I am wanting to select a table for the FROM part:

    categoryComm = new SqlCommand("SELECT ListRelationID, ListRelation FROM ListRelationTbl", conn);

    based on what value the user selects in a...
  29. [RESOLVED] Can someone please comment this code for better understanding: reader = comm.ExecuteR

    SqlCommand comm = new SqlCommand("SELECT * FROM UsrTbl, RelativeTable, IP_Table WHERE RelativeTable.UserID IN (SELECT UserID FROM UsrTbl WHERE UserName = @usrnmeLbl)", conn);
    ...
  30. Replies
    4
    Views
    685

    Re: Getting Started with MSDN

    Thank you so much.
  31. Replies
    4
    Views
    685

    Re: Getting Started with MSDN

    I didn't realize it was simply showing this:

    InitiateSystemShutdown( NULL, NULL, 0, TRUE, FALSE );
  32. Replies
    4
    Views
    685

    [RESOLVED] Getting Started with MSDN

    Ok, bear with me. I am wanting to learn exactly this. How you find what you think you need to work with and how to work with it.

    I wanted to work on a project that would motivate me to learn. What...
  33. Replies
    12
    Views
    1,113

    Re: [1.0/1.1] Shutdown / Restart computer

    Yes, I would love to see your code. I was wanting to perform the same thing.

    Thanks in advance.
  34. Re: [RESOLVED] How do you cycle through an array of objects?

    Thank you for that advice.
  35. Re: How do you cycle through an array of objects?

    You are right. It is an array of structures.

    I didn't realize this before but your explanation was very helpful.


    Thanks so much.
  36. Re: How do you cycle through an array of objects?

    I tried to do as you have written but I am getting the error:

    Cannot modify members of 'q' because it is a 'foreach iteration variable'
  37. [RESOLVED] How do you cycle through an array of objects?

    foreach (Room q in rooms)
    {
    rooms[q].rWall = "|";
    rooms[q].floorDwn = "_";
    }


    When I try Room I get the error:
    Cannot implicitly...
  38. Re: Checking last index of the array giving me a problem. VS2005 C#

    Thank you so much
  39. [RESOLVED] Checking last index of the array giving me a problem. VS2005 C#

    private void CreateMaze(int h, int w)
    {
    int r = h * w;
    Room[] rooms = new Room[r];
    Random rm = new Random();
    int newrm = rm.Next(0, r);
    ...
  40. Re: [2005] How to get the properties box to display properties while in source view mode?

    Its the wrox book beginning aspnet2 with c#. It sure is showing a twist to some things and forgetting to show how to get through those twists.

    Found some help with it here though:...
Results 1 to 40 of 453
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width