CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gib65

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Why is my MVC web app throwing a CultureNotFoundException?

    Hello,

    I'm running an MVC web application and I'm getting some weird errors upon starting the application. They aren't consistent--the errors seem different every time--but what is consistent is...
  2. Replies
    2
    Views
    618

    Can .NET 4.0 produce these graphics?

    Hello,

    Please have a look at the attached diagram. What I want to know is: can this image be reproduced in C# using .NET Framework 4.0. We have an application that runs on 4.0 and to draw...
  3. Replies
    3
    Views
    9,789

    Re: LoadLibrary("kl2dll32.dll") returning 0

    Thanks Victor,

    Yes, I found the install package for keylok lying around, ran it, and suddenly everything works.
  4. Replies
    3
    Views
    9,789

    LoadLibrary("kl2dll32.dll") returning 0

    Hello,

    I'm developing a C# application in Visual Studio 2013 on Windows 10. The following line of code returns 0:

    keylok = LoadLibrary("kl2dll32.dll");

    LoadLibrary is a native win32 method....
  5. Replies
    0
    Views
    541

    using linq to get unique values

    Hello,

    I'm a complete newbie to linq.

    I'm trying to figure out how to get an array of objects out of another array of objects filtering by distinct fields.

    The source array consists of...
  6. Thread: UserControl re

    by gib65
    Replies
    1
    Views
    754

    UserControl re

    33841
    33843
    33845

    Hello,

    Please look at the three attachments above. The first one shows what my form looks like before I click the Sync button in the bottom left corner. This looks fine.
    ...
  7. Replies
    1
    Views
    1,539

    anchoring won't work

    Hello,

    Please see the attached screen shots.

    This is a Windows Forms application. I have two group boxes with the headings "Filter Options" and "Run". I'm having problems anchoring the Run...
  8. Replies
    1
    Views
    1,390

    manipulating control across threads

    Hello,

    I'm trying to do some multithread using Invoke() in order to set the values of Window Form controls, and I need some help.

    The situation is this. I have a form on which there are many...
  9. Replies
    0
    Views
    666

    login not working

    Hello,

    We have a web app that uses a WCF service and uses Active Directories for authentication. We're have a problem with the login process which only occurs if the user enters the right username...
  10. Re: Creating two relations to the same datatable field

    I figured it out: I needed to create two relations. I opened the first relation, changed the name, link the other FK to Course.ID, and a second relation was created.

    It's a bit deceiving because...
  11. Re: Creating two relations to the same datatable field

    No, they refer to two different courses. Course A relates to course B--they have different IDs.
  12. Creating two relations to the same datatable field

    Hello,

    I'm working in the dataset designer in Visual Studios 2012 and I would like to create two relations between two tables. The one table is the "Courses" table, and the other is the...
  13. Replies
    1
    Views
    729

    Changing mapping on datasets

    I've recently changed the names of some of my columns in my database. I've updated my dataset in the Visual Studios designer to match those name. Yet I'm still finding lines like this in my XSD file:...
  14. Replies
    0
    Views
    781

    Making dataset tables internal

    Hello,

    I created a DataSet in Visual Studios and I set its modifier property to internal (see attachment below). Yet the tables I create are still public. Why is this? Is there any way I can set...
  15. Replies
    2
    Views
    1,019

    Re: formatting decimals

    The important thing to note is that we want these value to be 13 characters long.

    So, for example:

    -10.1 would be: "__-10.1_____"

    123.004 would be: "__123.004___"

    6 would be:...
  16. Replies
    2
    Views
    1,019

    formatting decimals

    Hello,

    I'm trying to wrap my head around formatting decimals.

    I have a specification that needs to be met, and it's outlined as follows:



    I've read the following MSDN articles:
  17. Re: How to tell if resize was horizontal or verticle

    Thanks Arjay.
  18. Replies
    1
    Views
    869

    GroupBox won't show up

    Hello,

    I have a form with a UserControl inside it, and inside that UserControl is a GroupBox:

    http://www.shahspace.com/revision_form.jpg

    Under certain conditions, I want to add another...
  19. How to tell if resize was horizontal or verticle

    Hello,

    I've got a UserControl responding to a resize event. In my resize event handler, how can I tell if the resize was horizontal, vertical, or both?
  20. Replies
    4
    Views
    1,156

    Re: UserControl won't fit on Form

    I seem to have solved the problem by docking my ListBox to "top". Thanks for everyone's help.
  21. Replies
    4
    Views
    1,156

    Re: UserControl won't fit on Form

    That doesn't seem to work.
  22. Replies
    4
    Views
    1,156

    UserControl won't fit on Form

    Hello,

    I'm having trouble getting my UserControl to fit snuggly in my panel. Here's a screen shot of what it looks like:

    32641

    The UserControl is in red and the panel I'm trying to fit it...
  23. Replies
    1
    Views
    915

    Can't add DataRow to DataTable

    Hello,

    I'm having trouble adding a DataRow to a DataTable.

    I create the DataRow like so:

    DataRow row = myDataTable.NewRow();

    I add things to the row, then I try to add the row back to the...
  24. Re: code thinks deleted stored procedure still exists

    Turned out I was creating them in the wrong database. Problem solved.
  25. [RESOLVED] code thinks deleted stored procedure still exists

    Hello,

    I'm writing some code to create stored procedures in a database. In order to test it out, I deleted a stored procedure (right clicking in

    SQL Server 2008 and clicking on delete) and...
Results 1 to 25 of 63
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured