Search:

Type: Posts; User: pikohn

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    2,941

    Re: C# Trying to emplement User Systerm

    thanks sapator, I'm always willing to take any help I can get. Quick question, do you know of any sites or books that can help me in my effort? I'm just trying to get the framework down for a basic...
  2. Replies
    8
    Views
    2,941

    Re: C# Trying to emplement User Systerm

    Hi sapator,

    The biggest reason is that MS's login system uses GUIDs as user ID's I plan on implementing a messaging system using user ID int's are much easier to work with than GUID's. The second...
  3. Replies
    8
    Views
    2,941

    Re: C# Trying to emplement User Systerm

    Sorry I looked @ this and it seemed a little unclear. Probably because I was on high doses of medication.
    To be clear,

    When the page login.aspx is activate the code behind runs the following......
  4. Replies
    8
    Views
    2,941

    Re: C# Trying to emplement User Systerm

    Hi NightWalker thanks for the reply,

    Here is the code I think pertains to the error....

    When the login code is executed, this is run:


    private LoginPresenter _presenter;
    protected...
  5. Replies
    8
    Views
    2,941

    C# Trying to emplement User Systerm

    Hey guys,

    I know this is a VB forum, but I have had luck in the past posting here and figured I'd try here first. I am trying to familiarize and eventually add to the PACKT Fisharoo code base in...
  6. Replies
    1
    Views
    1,600

    Re: VS 2012 ASP.net Woes

    The Solution is found in the following thread...

    http://stackoverflow.com/questions/345559/setting-up-the-default-aspnetsqlprovider-to-point-to-remote-database

    Mike
  7. Replies
    1
    Views
    1,600

    [RESOLVED] VS 2012 ASP.net Woes

    Hello,

    I am trying to setup a simple membership in VS 2012. Long story short, I keep getting an error message when trying to access the default asp DB through the ASP.net configuration tool. The...
  8. Replies
    1
    Views
    992

    Re: VS 2010 Setup Project

    The problem isn't with the way I put the registry search condition in, rather it is what I consider a bug in VS2010. More Info here...


    One fix that I found is to download Orca which is mentioned...
  9. Replies
    1
    Views
    992

    [RESOLVED] VS 2010 Setup Project

    Hello,

    I am trying to figure out how to setup a Registry search condition to look for MSSQL 2008 Express. I found the key, and verified that it is there in regedit. However when i build and try to...
  10. Replies
    3
    Views
    633

    Re: Quick DataGridView Question

    Thanks. Just what I needed!
  11. Replies
    3
    Views
    633

    [RESOLVED] Quick DataGridView Question

    Hello,

    I have a quick issue i need help with...I just wanted to know if the extra column to the left of the data in the datagridview box can be deleted or at the very least made so the user can't...
  12. Re: Data Grid View (Show value for each cell in row)

    Thanks for replying,

    I ended up using jmc's way to get the data i needed. I appreciate your help with this issue. Thanks.

    Mike
  13. [RESOLVED] Data Grid View (Show value for each cell in row)

    Hello again,

    I'm kind of stumped on how to get the data I want from a data grid view box.

    Simply Put, What I need to do is get every value from each cell in a row.

    So if row one is...
  14. Re: [RESOLVED] Loop selected items of a listbox?

    Thanks for your help!

    :)
  15. [RESOLVED] Loop selected items of a listbox?

    Hello VBers,

    I have a quick question...is it possible to make a "for... each" loop that would go through each selected item of a listbox? What I want to do make sure there are no dupe names in the...
  16. Re: Need help with error checking on an insert statement

    Thanks for helping me with this....appreciate your insight. :)

    Mike
  17. [RESOLVED] Need help with error checking on an insert statement

    Hello,

    I am currently trying to make an insert statement that will first check for exceptions before it is sent to the SQL server, I am new to this and would like to know what errors I should be...
  18. Re: Need Help making syncing selected rows in a Data Grid View

    After doing some research, I found that I was calling a new instance of addressBkFrm and running the refreshinfo sub in that new instance. What I needed to do was create a reference to the parent...
  19. Re: Need Help making syncing selected rows in a Data Grid View

    Just an update...I have the first problem fixed (Search Issue) by following your advise.

    I am still having problems trying to get the listbox to update when I add a new group. I tried putting the...
  20. Re: Need Help making syncing selected rows in a Data Grid View

    I'm not sure how i would do that...since the code id like to repeat involves binding data to a listbox on form 1. Can you give an example?

    Here is my code...



    Dim getgroups As New...
  21. Re: Need Help making syncing selected rows in a Data Grid View

    Hello JMC and thanks for the reply, I have made some changes to the UI but I still plan on using the advice you've given me for the final version.

    Trying to get things to work properly, another...
  22. [RESOLVED] Need Help making syncing selected rows in a Data Grid View

    Hello,

    I am trying to make an address book and need help. I am in the middle of making a search function for the program and I've got that working fine. What I would like to do is take the row...
  23. Re: Need Help limiting the amount of numbers to two after a deimal point...

    Thank you! This will come in handy!

    :)
  24. Need Help limiting the amount of numbers to two after a deimal point...

    Hello,



    I am trying to restrict the the number of decimal places to two in a textbox.

    I've already made it so only numbers and decimals can be added, now this is the only thing that isnt...
  25. Re: IM system...checked state not registering

    You are both right...I neglected to provide what I wanted the datakeys (DataKeyNames="bla") to be in the gridview. Once I did that...everything worked fine.

    Thanks agian,

    Mike
  26. Re: IM system...checked state not registering

    Hi Brin Thanks for your response,

    You can and I've tried. The result is the inbox showing until a postback is made. When this happens, the inbox table is no more. I believe because the binding is...
  27. Re: IM system...checked state not registering

    can someone help me with this?
  28. Re: IM system...checked state not registering

    Here is the Markup...


    <asp:GridView ID="showmail" runat="server" Width="100%"
    AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
    ...
  29. Re: IM system...checked state not registering

    Sure, as soon as I get home Ill send the I send the markup.

    Mike
  30. [RESOLVED] IM system...checked state not registering

    Hello,

    I am working on an IM system and have a question regarding the checked state of check boxes in a gridview.

    The Problem is, weather a check box is checked or not, it always returns...
  31. Replies
    3
    Views
    648

    Re: Repeater/Datalist Question

    Hi Gep, nice to talk to you agian. I went ahead and starting working on this...I will post an updated thread with questions I have.

    Best,

    Mike
  32. Replies
    0
    Views
    572

    LinqtoSQL single entry to string???

    Hello,

    I am having a problem with linq. Im trying to query an SQL database for usernames inputted by the web user. If there is a match, I would like to continue... if not Id like to show a...
  33. Replies
    3
    Views
    648

    Repeater/Datalist Question

    Hello,

    I have a quick question regarding repeaters and datalists. If I were to add a check box to the list, is there a way to tell which entry has been selected?

    Regards,

    Mike
  34. VS 2010 Re: Taking ASP.NET Capabilities further...

    Thanks for the info guys...

    I will look over everything posted...

    Mike
  35. Replies
    3
    Views
    723

    Re: Gridview Limiting Columns

    Figured it out...

    Joining these to tables by the UserID limited the rows.

    Mike
  36. Replies
    2
    Views
    463

    VS 2010 Database structure for PM System...

    Hello,

    I dont know if any of you have any experience trying to do something like this, but i'm at wits end and need direction. I would like to make a messaging system for the program I am working...
  37. Replies
    3
    Views
    723

    Re: Gridview Limiting Columns

    Okay, I figured out the solution to my problem but another issue has come up...when I try to use to tables in the same database I get duplicated entries. Check screen shot. I've looked in each table...
  38. Replies
    3
    Views
    723

    [RESOLVED] Gridview Limiting Columns

    Hello Everyone,

    I have a question regarding gridview items. I have a page that searches a database for users based on their username, then displays the results that are then converted to a list...
  39. Replies
    3
    Views
    1,308

    Re: Create User Wizard Issues

    Well I finally did figure this out although it took me quite a while. A lot of the info on 4guys is very helpful, but every now and then you'll run into an article that shows its age. Anyway here is...
  40. VS 2010 [RESOLVED] Taking ASP.NET Capabilities further...

    Hello Everyone,

    It's been a while since I posted. I will be starting a new project soon and have some questions. I want to make user profiles for my site, and have messaging capabilities(friends...
Results 1 to 40 of 125
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width