gooon's Q&A profile
Visual Studio Download of Visual Studio Professional 90-day Trial (only 1.1 GB not 2.6 GB downloaded, why?)
From the following site: http://www.microsoft.com/downloads/details.aspx FamilyId=B2C27A7F-D875-47D5-B226-E2578A116E12&displaylang=en I downloaded the "MS Visual Studio 2005 Professional Edition 90-day Trial" image file name En_vs_2005_Pro_90_Trial.img. The site indicates that the download would be a 2734..3 MB file (2.6 GB). However, after 1,119,590 bytes of download, the download dialog box indicated that it was storing the download segment to disk and the final file size is 1,119,590 bytes and the filename is En_vs_2005_Pro_90_Trial.img (a DVD image file). I wonder if it is only part of the download or it is all the data referred to in the above webpage. Shall I just burn the 1,119,590 MB to a DVD and it will ...Show All
Smart Device Development Pocket PC 2003 Emulator can't connect to Activesync in neither evc4.0 or Visual studio 2003
I have the winxp Sp2 Environment 1. activesync 4.1 2. Disable firewall 3. emulator device PPC 2003 shows my network ip but does not connect to activesync 4.1 4. virtual machine network services installed on the network connection on the desktop PC. There are tons of people have this problem, you can check in the google. IS there any solution for this or not. Thanks in advance . You might want to try the microsft.public.pocketpc.developer forum for questions about the x86 emulator. The emuascfg solution does not work with ActiveSync 4.0 or newer: it depended on ActiveSync support that enabled devices to sync with the PC over ethernet, and that feature was removed. ...Show All
SQL Server DateTime problem
I need to UPDATE DateTime in database. But input paramter (@DatumPozadovany) is not in Default format 'mon dd yyyy hh:miAM', but in Europian one 'dd mon yyyy HH:mi'. This code don't work, becuse it converts standart input into unstandart output. I need the oposite of it. UPDATE DoslaObjednavka SET DatumPozadovany = CONVERT(datetime, @DatumPozadovany, 13), Oznaceni = @Oznaceni WHERE (Id = @Id) Please, help. SELECT CONVERT ( DATETIME , GETDATE (), 109 ) --returns 2007-02-12 21:09:56.970 SELECT CONVERT ( nvarchar ( 26 ), GETDATE (), 109 ) --returns Feb 12 2007 9:09:56:970PM From the SQL Server 2005 Books Online topic CAST and CONVERT (Transact-SQL) "In the following table, the two columns on the left rep ...Show All
Visual Basic panel.control.add
if i do: panel.control.add(control1) panel.control.add(control2) panel.control.add(control3) ... several times then do: dim ctrl as control for x as integer = panel.control.count-1 to 0 step -1 ctrl = panel.control.item(x) next should things come out in the order they went in eg: panel 1 panel 2 panel 3 panel 1 panel 2 etc... i dont seem to be getting that... Thanks! Dan thanks! i was adding and removing an inkedit to the panel in order to speed things up (instead of having dozens inkedits) so this was screwing up the collection. ...Show All
Visual Studio Express Editions Visual Web Developer- Starter Kit
Hi I just uninstall VWD beta and installed VWD express edition. When running personal strrter kit. I get this message. Where is the problem and what should I do about it. I already removed SQL2005. I thank you in advance Server Error in '/WebSite2' Application. -------------------------------------------------------------------------------- An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) firstly do a forum search about SQL Express and remo ...Show All
.NET Development Handle Leak in Thread class
I have noticed what appears to be a handle leak in the Thread class. When I create a new Thread object 5 WIndow handles get created (1 thread and 4 event handles). When I join the thread back to the main thread those handle objects don't get destroyed and since there is no Dispose method on the Thread object there doesn't seem to be any way to force the handles to be released other than waiting for the garbage collection to get get rid of them. I am missing something or is this a bug in the Thread class Here is my sample code: private void _StartThread_Click( object sender, EventArgs e) { _Abort = false ; _TestThread = new Thread (MyThread); _TestThread.Start(); _StartTh ...Show All
SQL Server To Order More Than One Coloumn
Hellos; I have a lot of News. Only i want to get last 10 news and piorty is important for me to change orders of the news. So i add a new coloumn in the table (Piorty int) ... select top 10 NewsID, Piorty, Title, Spot from News order by 1 desc, 2 asc -- i want to get last 10 news than order by piorty (which piorty is bigger is be thre first) but in this query i just get last 10 news desc the piorty isn't imports even though i would get them order by piorty but last 10 news... How can i do that Please hellppp ... thnank you verry muchhh ... The original requirement is "i want to get last 10 news, then (than) order by piorty". So you have to narrow do ...Show All
Visual Studio Missing one or more component & "devenv.com" exited with code -1
Does anyone here know about that kind of error When I try to run a project that runs Exp Hive (Integration Package, DSL), I got a pop up say something like: "Missing one or more component. Please re-install application.". And in the output window there is error message: "devenv.com" exited with code -1. Any idea will be appreciated. P Rruna I haven't actually encountered this particular error, but I suspect that you may need to regenerate the experimental hive and rebuild/reregister the DSL package. Just use the following command line to regenerate the experimental registry hive: VsRegEx GetOrig 8.0 Exp If that doesn't work, you'll probably need to debug the package and try ...Show All
Visual Studio 2008 (Pre-release) Catch property changed event in xaml
hi, i'm creating a custom button control which inherits from System.Windows.Control.Button and implements the INotifyPropertyChanged interface. How can i catch the event in my XAML when a property of the custom changes Can i do this with a EventTrigger within my style in the XAML File Furthermore i want to the change the style of my control in XAML, depending on the value of the property Any ideas Thanks a ton, bkohler Sheva, could you please post a short example how i can handle this. I do not only want to catch the event when the property's value has changed, furthermore i want to interpret the changed value of the property to change the style depending on the new v ...Show All
SQL Server SSIS Package Configuration Filter
We have more than 100 packages which referenced many of the same data sources. In ideal situation, we would like to create three master filters based on the dev, test, and prod servers and all packages can just reference the same filters. However since one package normally only use a subset of master connections defined in the configuration files, if only those subset of connections are set up in the package, when the package is first open in BIDS, lots of errors will pop up saying that it could not find the connections defined in the configuration files. Even though this will not cost runtime error, it is still very annoying. Does anyone have better ideas on how to handle this Jane2006 wrote: T ...Show All
Visual Studio Express Editions HowTo: Startup Application Invisible in the System Tray
The standard method for starting up an application invisible is to use the Sub Main() as the startup object, then load the form as necessary. However, if you want to use the application framework, this option isn't available. I've been wrestling with this problem for some time, and have several solutions, none of which are adequate. But what follows seems to be the best solution, but first, the 'broken kludge': One option was to have the form completely opaque, and set the ShowInTaskBar to false. Once the form has loaded, set the visibility to false, restore the ShowInTaskBarback to True, and set the opacity to that which is desired. There are two problems with this: 1. It requires an 'event' after the form has loaded to reset ...Show All
Visual Studio Express Editions Connect vb express to existing sql2005 developer?? dumb code example
have searched all around can't seem to see how to configure a SQL2005 developer ed so I can use vb express to develop a local front end. keep getting "the user instance login flag is not supported on this version of sql server" I have configured the .net framework via aspnet_regsql.exe. Also I configured the "Machine.config" file. but so far no luck. Selecting sql2005 as the server thru the add new database connection in advanced area yields the error message surely there is away. The point I was making was more to do with IDE Support in VB Express. Its not available for other databases without paying for VB.NET. Thats not to stop you coding up the stuff, which is what Renee is sho ...Show All
SQL Server How do I develop a plug-in for Management Studio?
Recently saw a red-gate product that added an entire menu header to the management studio interface. How does one go about developing that My company has several SQL related home grown mini utilities written in C# that I've placed in Management Studio for convienience via the external tools functionality. Feedback from our development and database groups indicate that this solution does not go far enough in cleanly simplifying how we leverage our custom utilities. That being the case it would be a great boon to learn how to add an entire menu to the environment as to customize it to our needs. Any information would be a help. Thanks in advance. My team owns SQL Server Management Studio. In SQL Server 2005, ...Show All
.NET Development Windows Application Login Authentication over network
How do you create a windows application login to authenticate with windows username and password over an internal network to enable a secure entry in to other .net programs. Do you mean that you want to determine the currently logged on user to enable you to restrict access to your program, or that you want to impersonate another user (e.g. runas.exe) ...Show All
Windows Forms copy and paste cell content
Hi I am building a datagridview form in VisualStudio 2005 and I want the user to be able to copy or paste the content of a cell without needing to select its text first (as this can become tyresome after a while). In excell databased tables you're able to copy the cell's content just by selecting the cell and pressing ctrl + C (not actually selecting the text inside the cell). Can't seem to do it with my visual studio form. Thanx for any help ...Show All
