Search:

Type: Posts; User: Seraph

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. VS 2010 Re: Issue with accessing data from dynamically created DropdownLists

    No, I don't recreate them. They are initially created in the SelectedIndexChanged of a DropdownList and that's it.
    I'm having trouble figuring out how to recreate them in a PostBack, but wasn't...
  2. VS 2010 Issue with accessing data from dynamically created DropdownLists

    I have it setup so that when a user selects an item from a DropdownList, that some DropdownLists are dynamically created, based on the results from the Database that are returned after selecting the...
  3. Replies
    2
    Views
    1,205

    VS 2010 Re: LINQ to SQL and Distinct ordering

    I guess it all comes down to SQL Server thinking too hard. With LINQ to XML, I get the results I want by ordering by an ID and then doing distinct on the results. It seems to be doing just what I...
  4. Replies
    2
    Views
    1,205

    VS 2010 LINQ to SQL and Distinct ordering

    So, the MSDN says that "The result sequence [of Distinct] is unordered."

    So here is my issue. I have a table in SQL Server that at one point had this design of fields:
    id, find, replace

    My...
  5. Replies
    1
    Views
    1,303

    VS 2010 Re: Open TFS work item in VS from a .NET program

    Uggh. I hate when this happens. I post a question, then do a search that finally brings up the answer I need:...
  6. Replies
    1
    Views
    1,303

    VS 2010 Open TFS work item in VS from a .NET program

    So, I have created a program that gets me the information I need out of my local TFS at work.
    The idea is to have the program running in the system tray so that I can just click the icon and bring...
  7. VS 2010 LING to SQL returning weird data in a List(Of String)

    I'm having an issue with the following code when it gets to the bolded line:


    Try
    Dim tl As WeeklyTaskListDataContext = New WeeklyTaskListDataContext

    ...
  8. Replies
    7
    Views
    3,948

    VS 2010 Re: FileSystemWatcher alternative

    The text is actually disappearing sometimes, and it may be a by-product of some other thing I do but I can't be sure. If it just updates once, there wouldn't be a problem.

    I'll try those ideas...
  9. Replies
    7
    Views
    3,948

    VS 2010 Re: FileSystemWatcher alternative

    Only thing in the Change event that I do to the file is this: System.IO.File.ReadAllText(<file>).

    And yes, as I said, I can't ever be sure what tool will be modifying a file because this is...
  10. Replies
    7
    Views
    3,948

    VS 2010 FileSystemWatcher alternative

    Implemented a FileSystemWatcher and I keep, usually, getting 2 notifications when a text file of mine is updated.

    I am watching the .Changed status of a single file. Because of the nature of my...
  11. Replies
    4
    Views
    743

    Re: Needs guidance for beginning of vb.net

    I'm a huge fan of the Wrox company who does some amazing programming books.

    For SQL Server I would get THIS BOOK.

    If you want to do Visual Studio 2010, THIS BOOK.
    If you want to do Visual...
  12. Replies
    0
    Views
    609

    VS 2010 [RESOLVED] CheckBoxList

    [DELETED]
    Was confused and found what I was doing wrong.
  13. Replies
    8
    Views
    1,825

    VS 2010 Re: LINQ to XML Customizable WHERE clause

    I like what you did there...that may be useful.
    But what I will really be doing is wanting them to be able to choose the "source".
    PFRPG and Ultimate Magic are only two of several sources.
    I will...
  14. Replies
    8
    Views
    1,825

    VS 2010 Re: LINQ to XML Customizable WHERE clause

    Well, in that case, here is my current style for getting the records I want out of the XML file:
    spells = From s In root.Descendants("spell")
    Where...
  15. Replies
    8
    Views
    1,825

    VS 2010 Re: LINQ to XML Customizable WHERE clause

    I didn't post anything because I don't have anything.
    I haven't tried yet because I'm confused. I am asking for the best way to do dynamic queries based on the way I'm structuring my data.

    I...
  16. Replies
    8
    Views
    1,825

    VS 2010 LINQ to XML Customizable WHERE clause

    So I have a query I'm doign where, at the moment, the places to search are set in stone, but the values that maybe be searched for is variable.

    Right now, I have a drop down menu that allows you...
  17. Replies
    0
    Views
    628

    VS 2010 WebBrowser and Document.Write

    I am using this code to attempt to load data into the WebBrowser:

    Private Sub GetSpell()
    Dim guid As String = lvwSpells.SelectedItems(0).Tag

    Dim spell As XElement = (From s...
  18. VS 2010 Re: Passing Parameter to Stored Procedure with SqlCommand

    I'm not even sure what the heck I did, but everything is working now.
  19. VS 2010 [RESOLVED] Passing Parameter to Stored Procedure with SqlCommand

    Imports System.Data.SqlClient

    Public Class frmMain

    Public UserName As String = System.Environment.UserName

    Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As...
  20. Replies
    3
    Views
    579

    VS 2010 Re: LINQ sub-elements and joining

    Anyone else got any ideas?
  21. VS 2010 DataGridView and changes not made to a cell

    I have a DGV bound to a data adapter. I have a button that loads a form with a reference to the DGV row. When the form is loaded, it has a TextBox to type a value, that modifies one of the cells of...
  22. Replies
    15
    Views
    11,784

    Re: Adjust Audio Volume

    Yeah, it's pretty straightforward but that is coming from unmanaged code; that isn't a part of .NET

    That was all the point i was making. That is pretty simple compared to other unmanaged things...
  23. Replies
    3
    Views
    579

    VS 2010 Re: LINQ sub-elements and joining

    The problem is, these files are being used as a resource from another open source project so I have no control over the files. The data will be separate.
  24. Replies
    15
    Views
    11,784

    Re: Adjust Audio Volume

    Controlling the sound is actually a very hard thing to do...and it got even more complicated in Windows Vista and up. I have never been able to find this type of stuff in .NET and I looked rather...
  25. Replies
    3
    Views
    579

    VS 2010 LINQ sub-elements and joining

    I'm really struggling with this.
    I have two XML files.
    The first one has items, and then sub elements for properties:



    <item id="1" name="Item">
    <p id="1" value="1" />
    </item>
  26. [BI Developer] IN Clause with multi value from Report parameters.

    Having trouble finding someone who addresses this issue I am having.

    I am using the BI Developer in Visual Studio 2008 to create a report that hits a SQL Server database.

    I have a dropdown of...
  27. VS 2008 Re: Issue with not being able to get the SelectedIndex of a DropDownList

    OK, thanks for the kick in the pants.
    The stupid List(Of )'s were being reset with each page load, and i had the code to populate them in the Not isPostBack condition. Kept it from repopulating.
  28. VS 2008 Re: Issue with not being able to get the SelectedIndex of a DropDownList

    Hmm, I'm not following.
    I did what you said, and I'm not seeing what in the CheckSelection method would be causing any issues.
    This is my first ASP.NET project ever that I just started the other...
  29. VS 2008 [RESOLVED] Issue with not being able to get the SelectedIndex of a DropDownList

    I am populating a DropDownList from a text file (class requirement).
    The file is read in the Page_Load method and the DropDownList is populated then.

    When I press the Submit button, throughout...
  30. Replies
    3
    Views
    1,186

    VS 2010 Re: Adding appointments to Outlook

    Vacation Calendar is a public calendar that everyone has access to view.
    There are a few accounts that have access to edit it. Someone in HR and a SharePoint AD account.

    I assumed the .Logon...
  31. Replies
    3
    Views
    1,186

    VS 2010 Re: Adding appointments to Outlook

    Any ideas out there? I know 30 people have looked at this, but I'm rather lost and not sure where to go from where I'm at.
    Even if someone knows this is impossible, I need to hear that too so I can...
  32. Replies
    3
    Views
    1,186

    VS 2010 Adding appointments to Outlook

    I am working on an internal project at work where we have an SharePoint Custom Visual Studio Workflow that we want to automatically update an Outlook calendar with.

    Is there a way to get a...
  33. VS 2010 Re: Confused with treatment of commas with INSERT/UPDATE to SQL

    Grr...OK.
    Thanks. That was it.
    I was thinking it was talking about an issue with data, not with the SQL Query.
    Looking in the totally wrong place.
    Thanks.
  34. VS 2010 Re: Confused with treatment of commas with INSERT/UPDATE to SQL

    This issue is only with PrimaryEmployer, and only in the UPDATE statements.
    The INSERT statement works just fine.

    And this is an issue with commas, not single quotes.

    Have fun...lol.



    ...
  35. VS 2010 [RESOLVED] Confused with treatment of commas with INSERT/UPDATE to SQL

    It's hard for me to understand where this issue should be posted.

    In SQL Server, you have to put single quotes around strings.

    But, when trying to run a SQL command in VB.NET I get some weird...
  36. Replies
    10
    Views
    1,013

    VS 2010 Re: [RESOLVED] Questions about List(Of ).Clear()

    Bytes in use isn't the same as allocated memory though?

    But, if you set it to Nothing, it will be garbage collected and gotten rid of anyway since they are orphaned?
  37. Replies
    10
    Views
    1,013

    VS 2010 Re: Questions about List(Of ).Clear()

    OK, cool. Thanks. Just needed some reassurance there on what is going on. :)
  38. Replies
    10
    Views
    1,013

    VS 2010 Re: Questions about List(Of ).Clear()

    Thanks for the input. I had a feeling it wouldn't reset any memory, but I thought I would ask just to be 100% sure.

    I do have a question though, what is the point in setting everything to...
  39. Replies
    10
    Views
    1,013

    VS 2010 [RESOLVED] Questions about List(Of ).Clear()

    When .Clear() is invoked, is the memory freed up that was allocated when all of the items were added?

    I need to load several lists of codes from a database depending on the import selected by the...
  40. Replies
    5
    Views
    1,233

    VS 2010 Re: Taskbar Application

    Thanks. Would have never guessed DeskBand...lol
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width