Software Development Network Logo
  • Game Technologies
  • Microsoft ISV
  • Visual C++
  • Windows Vista
  • .NET Development
  • Visual Basic
  • Audio and Video
  • Visual FoxPro
  • IE Development
  • Visual Studio
  • VS Team System
  • Visual C#
  • Smart Devicet
  • SharePoint Products
  • SQL Server

Software Development Network >> johnny_good's Q&A profile

johnny_good

Member List

Gavin Lilley
Sequel2k5
Mr Teter
JeevesIndia
Matty1stop
zybernau
cisco0407
une
omrivm
Keith Vinson
_Michael_
Welington Lima
Barak Ori
aeonblaire
CaRNaGe_46038
JulianRidley
pinoyz
Kanchan
Dkdjarrett
digitalmercenary
Only Title

johnny_good's Q&A profile

  • Visual Studio Express Editions FileDialog to retrieve path?

    I am building a PDF Manager program and when you add a pdf i want to be able to use a dialog to get the path, instead of having to type it in. Is there a dialog you can use for this I think you are looking for the FolderBrowserDialog control ...Show All

  • SQL Server Design Question (Analysis Services or Integration Services)

    Hi, I have a design issue and not sure, which approach to follow. Iam not sure, if I have to use analysis services or integration services. But we would like to use price trending also, so probably analysis services could be an option. We have a table which stores the Customer Items information. For making it easier, I will talk about customer 1 and item 1as shown in the table below: CustomerID CustomerCategoryID RegionId ItemID Price 1 1 2 1 10.00 2 1 2 1 12.00 3 1 2 1 14.00 4 2 1 1 18.00 5 2 1 1 ...Show All

  • Visual Studio Team System Server name in Changeset.aspx

    I changed the name of my TFS server in all sorts of places, but there is one left which I can't figure out. When I get an alert email that something new was checked in, I get an email with a link to the changeset. It ends with /VersionControl/Changeset.aspx artifactMoniker=16&webView=true. In there is a reference to a XSL stylesheet, but that reference is using the old, original server name. How can I update that one as well Thanks, David Jeff, I am afraid I didn't explain myself clearly. I changed the server name of our TFS server with the activateat from tfs01 to tfs01.mycompany.com. I also changed the TFSNameUrl and the TFSUrlPublic in the web.config in the Web Service directory. But ...Show All

  • Visual Basic VB Control Arrays.

    Ok, there are many posts all over the net with possible solutions to this challenge, but none seem to suit my needs. in the 'good ol' days' (VB6 and Prior) you could simply copy/paste controls to a form and set Index properties to create an array of controls. These could then be manipulated individualy, for example: MyTextBox(1).Text ="I" MyTextBox(1).Text ="WOZ" MyTextBox(1).Text ="'ERE" But I can't find a simple solution to create an array of 132 picture boxes. I don't need anything fancy, just to be able to address each box individually using an index. Any help would be much appreciated, and keep my barber in business a bit longer! Thanks, MrMojo. Hello MrMojo. Basically what you can do is add your co ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Multiuser games?

    Just curious... but has anyone used XNA/C# to develop MOG's or even MMOG's I doubt there is one available now, its very new and no one would have had the chance to build an MMOG! You could be the first to try :) I believe its possible. ...Show All

  • Visual Basic Combobox

    Hello. A question please. At the design time, how can I assign a value to each elements of my combobox Thanks... Add the items to combobox so that items such as Red Green Blue Pink Then on the combobox set the following two properties AutoCompleteMode : SuggestAppend AutoCompleteSource: ListItems Then when you start the application and type R, it will display Red, Type B and Blue will appear. This sounds like what your looking for. ...Show All

  • Smart Device Development VB.net mobile 5.0 application Cab File...please help!!!

    All of a sudden when i build my app, then I build my Cab File the Cab file itself is over 2mb...it used to be under 1...and it does not work has anyone else had this happen...is there a fix... cannot deploy new vrsions.... thanks in advance Mase Thanks for responding...I am going to re-phrse this issue... One minute i compile my app and the cab file is 768kb... then i go in and write a few lines f code, compile the app and the cab file is over 2mb...it is not copiling correctly...has any had this issue...thanks ...Show All

  • SQL Server Full Cached Lookup with Parameters

    Parameterized queries are only allowed on partial or none cache style lookup transforms, not 'full' ones. Is there some "trick" to parameterizing a full cache lookup, or should the join simply be done at the source, obviating the need for a full cache lookup at all (other suggestion certainly welcome) More particularly, I'd like to use the lookup transform in a surrogate key pipeline. However, the dimension is large (900 million rows), so its would be useful to restrict the lookup transform's cache by a join to the source. For example: Source query is: select a,b,c from t where z=@filter (20,000 rows) Lookup transform query: select surrogate_key,business_key from dimension (900 M rows, not tenable) Ideal Lookup ...Show All

  • SQL Server Threshold for data cache

    Hello Everybody- I am looking for some answers on below queries, 1. How many rows of data can be contained in the data cache, here in case of a temporary table (# tables) 2. When would SQL server decided to have the temp table on tempdb instead of data cache I did some google around but couldn't conclude anything. Thanks in advance! The temp table is always going to be written to tempdb. End of story. The data will be in memory, but it is also going to be written to disk. As far as how many rows can fit in the data cache, that all depends upon the size of your data cache and the size of each row that you are reading or writing. ...Show All

  • .NET Development How to send folder in stream

    Is where any way to send folder direct in stream with all content inside it (structure, files, subdirs) with an ability to recover it later from that stream I'd say a similar good approach is derivate from the FileSystemInfo Class and mark that class as serializable. A bit more work, but works nicly. For those who have local help installed: ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref8/html/T_System_IO_FileSystemInfo.htm ...Show All

  • Windows Forms the date field in gridview appears with 12:0:0 !!!!

    hi i make a website and i put a gridview control on the page and the date field appears with 12:0:0 i write all formats i know about the date on dataformat from column properties any help thanks in advance. ...Show All

  • Visual Studio 2008 (Pre-release) FlowDocument and web links

    Hello, may be you can help me with this problem. I'm trying to put a link to a web page in a FlowDocument (windows app) and open that page in the user default browser or ie. I've try this: <Hyperlink Foreground="#FFACA899" NavigateUri=" http://www.goo gle.com" TextDecorations="Underline"><Span xml:lang="es-es" FontWeight="Bold" Foreground="#FF808000" TextDecorations="Underline"><Run>Google</Run> </Span></Hyperlink> But it's not working it appear the hand cursor over the link but when I press the left button the hyperlink doesn't open the web browser. Thanks a lot. Lauren, thanks a lot ...Show All

  • Visual Studio Express Editions ListBox

    I am creating a movie database program and am trying to create it so that the movie titles are displayed in a listbox on the right and the rest of the info in boxes on the left. I connected up the listbox to a databinding source and selected the displayMember and valueMember accordingly, everything worked. But when I went to add movie titles in the database in a field on the left, save, then go to another movie title, the data was changed to a number. Can anyone help the listbox and the rest of the fields retain the info. I am a complete newbie, so could you explain what to do step-by-step. Thankyou for all your help! Elliott Never mind, I used a datatable instead! Sorry for the inconvienience I did have one quest ...Show All

  • Visual Basic Help - How can I runa VB program without runtimes installed

    Hi, I'm new here and I was wondering, is it possible for me to run a VB 2005 program using the Framework 2.0 on a computer without the runtime I want to do this because for a project I've decided to make a program but the computer I wnat to run it on and show teh class does not have the necessary runtimes installed. If I'm running it off a USB Flash Drive is it possible for me to do something such as install the runtimes to my USB Flash Drive and have the program use the files from the Flash Drive As you know, this is a school so I'm not allowed to install any software and this is the reason I ask this question. Thanks. Simply create your application and use a click once deployment - this will install the ...Show All

  • .NET Development bug reports

    ### Visual C# .NET Compiler Defect Report, created 08/08/06 13:46:09 ### Compiler version: 7.10.6001.4 ### .NET common language runtime version: 1.1.4322 ### Operating System: Windows NT 5.1.2600 Service Pack 2 ### Compiler command line csc /r:Accessibility.dll /r:Microsoft.Vsa.dll /r:System.Configuration.Install.dll /r:System.Data.dll /r:System.Design.dll /r:System.DirectoryServices.dll /r:System.dll /r:System.Drawing.Design.dll /r:System.Drawing.dll /r:System.EnterpriseServices.dll /r:System.Management.dll /r:System.Messaging.dll /r:System.Runtime.Remoting.dll /r:System.Runtime.Serialization.Formatters.Soap.dll /r:System.Security.dll /r:System.ServiceProcess.dll /r:System.Web.dll /r:System.Web.Mobile.dll /r:System.Web.R ...Show All

©2008 Software Development Network