Search results for query: *

  1. F

    FYI How to modify 'Recent Projects' on default 'Start Page'

    I searched all over the place for this and i finally found a way to edit the recent project items on the start page. Sadly it's a really manual method, if anyone knows of a better method please share. credit for finding the location goes to whoever wrote this post: Clear your Visual Studio...
  2. F

    Resolved in VS.net 2010, what is shortcut: Ctrl+K + Ctrl+K for?

    Does anyone know what this shortcut does? Besides toggling the icon on the left of the line number? ^^ the sky blue rectangle on the left of code line 965 Ctrl-K + Ctrk-K toggles show/hide of that rectangle on a code line ..i found it by accident and i've been using it like a bookmark for...
  3. F

    Resolved syntax question: "Public Property [row]() As String" what are [] and () for?

    syntax question: "Public Property [row]() As String" what are [] and () for? small, not important question, but its been bugging me. I saw this in someones code, can somebody please explain what the []() syntax does? thanks Public Property [row]() As String 'is []() just optional syntax...
  4. F

    Best Practices? Import and alias same namespace, bad idea?

    quick question, what do you guys think about this? Bad idea, bad practice? or doesn't really matter? low priority. Thanks in advance. Imports SIMS_GTalkMsgSystem Imports sgt = SIMS_GTalkMsgSystem
  5. F

    Question "Do : Loop Until Completed" Feels like a bad idea?

    Sub ReloadRoster() Dim Completed As Boolean = False AddHandler OnRosterEnd, Sub() Completed = True AddHandler OnRosterItem, Sub(sender As Object, item As RosterItem) Roster.Add(item) End Sub...
  6. F

    testing

    testingwith10charsmore
  7. F

    Resolved Suggestions, ideas? making a computer act like a server

    Sorry, this was a time sensitive matter and i made a decision on what method to use already. This thread can be deleted, Thanks. Revised and Summarized Was looking for suggestions and ideas on making a computer act like a server. The computer is limited in that it only has ports open for...
  8. F

    Question Wierd.. is there a time limit?

    Going to leave this message here for a day or too, unless somebody knows more about this setting message to Resolved issue... It appears the Edit Post option disapears on started posts? 5/23/2011 1:47pm started still can edit
  9. F

    Resolved mark thread as Resolved?

    makign quest thread.. How to make this resolved?
  10. F

    Question How to get selected section from a Date Time Picker Control?

    I am trying to get the part of the text that is selected from a datetimepicker control. For example say the formatting is "MM/dd/yyyy hh:mm tt" , when the user clicks on the control they can highlight just one section of it, like just the month or just the minute. Is there a simple way to...
  11. F

    Question How to start a program before Uninstall or clear mySettings? Using Setup Project

    First time using the setup project, it installs and uninstalls the application and files just fine, however the settings that are stored in user/appdata on the computer from mySettings are not being deleted or reset. I am just having the user go to the control panel to uninstall the program, is...
  12. F

    Focus on one programming language? Any recommendations or advice?

    Hi all, I've been programming for about 1-3years and i really love it. i've played around with html, asp.net, flash and what not since i was like 15, but nothing serious. I took intro courses to vb, c++, and java. And everything else i'm self-taught. I have the most knowledge in and mainly...
  13. F

    Question Passing Parameters to a Stored Procedure, getting results, but incorrect usage? :/

    Hi all, I consider myself to be a beginner to intermediate programmer, i'm pretty new to working with an access file through vb. This is of low priority since i am getting the results that i want, but i just don't understand why it's working this way. :confused: Any explanation would be much...
Back
Top