Software Development Network Logo
  • Game Technologies
  • Visual Basic
  • Windows Forms
  • Visual Studio
  • Visual J#
  • Visual C++
  • Smart Device
  • VS Team System
  • Visual FoxPro
  • Microsoft ISV
  • .NET Development
  • Windows Live
  • Windows Vista
  • SQL Server
  • VS Express Editions

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

crazygrey

Member List

trowe
Khizer Haroon
Jong8282
Darren1234
QuanT - MSFT
blomm
LucaTarrini
schrepfler
K-ERoL-K
Zac Evans
Jan Kelbel
JohnCC
alorbach
Joaquin Gracia
Parminder
magicdds
learn25
Allen_DSI
ipaqlinux48
Vykintas
Only Title

crazygrey's Q&A profile

  • Visual Studio Visual Studio 2005 perfomance issue

    Well, i just converted my 10 project solution to VS .Net 2005, and i'm finding out the converted app is running very slow. There has been no real change(except i substituted ConfigurationSettings.AppSettings to ConfigurationManager.AppSettings to see if that was the performance issue) and no luck. My application connects to Microsoft SQL Server(not 2005). What may be the cause to this problem My computer is a 2.39GHZ Celeron pc with 752 mbs RAM. There was no problem whatsoever with 2003 though. Thanks. Hi. Just wondering - make sure you don't have any unneccesary background apps running or applications open ...Show All

  • Smart Device Development trackbar question

    hi, i have a trackbar whose value is changed during the tick event of a timer. this happens while an audio file is playing. I want to be notified when the user changes the trackbar's value so that I can seek through the audio file and play the part that refers to the trackbar's value. how can I do this tapping into the ValueChanged event won't do because the value changes while the file is playing. is there a way to determine whether it is the user or the timer event that is changing the trackbar's value Please help! Thanks. You will need to cache the expected value you are setting to the trackview from you ...Show All

  • Windows Forms Jet database engine/mdb file - issues?

    Hi, I have used the Jet database engine in .NET for an application in the past, and did not have any issues at all. I am working on a much bigger application, but can't see any obvious pitfalls (a few million rows perhaps is all I anticipate at worst). Moreover, this is a Windows application, so I don't have many other choices, it seems. I&nb ...Show All

  • SQL Server SQL Server 2005, SQL Server Mobile, SQL Server Management Studio. Unsupported HTTP Function Call

    Hi All, Iam using SQL Server Management Studio subscription wizzard to attempt to create a subscription from SQL Server Mobile to a publication on SQL Server 2005 CTP i got couple months ago. When i get to the end of the wizzard and press finish when it attempts to "Syncronizing Data" it then gives me a error as follows. "An incorrect or unsupported HTTP function call was made HRESULT 0x80004005 (28017)" Any help is appreciated. Thanks. Hi i wonder if anybody is still reading this.HELP PLEASEEE I have 2 problems, First whem I go to "view snapshot agent status" on my merge publication it shows the f ...Show All

  • Visual C# simple : How to create an object of an external (defined class) dll file?

    Hi every one! How to simply create an object of an external (defined class) dll file! Help please... Hi, You need to Add reference to the DLL in your project to create objects of classes defined in them. After adding the reference you can create objects as follows:- NewCLass objNewClass = new NewClass(); Regards, Nasha ...Show All

  • SQL Server Subscription Missing

    We are seeing a problem with the users of our application. If the user closes our application from running programs (as best as we can tell as we cannot repro in dev) and SQL Mobile is in the middle of an async sync, sometimes when the application restarts it fails to load the properties for replication from the database. We are using code that is nearly identical to the samples provided by MS for performing replication async. Basically, the database still exists on the device and the application can use it just fine, but when a sync starts, the database is already there, so it tries to load the properties at which point we get a message sta ...Show All

  • Windows Forms Generic ComboBox<T>???

    Is there a way to create / get a combobox that will only accept items of a specified type thereby negating the need to cast from Object I tried creating a subclass of ComboBox but that didn't seem to work as Items is a property instead of a method and is not virtual. No you can't using inheritance because even with the new modifier someone can still get access to the non-generic Items property. However if you use composition (by nesting a ComboBox in your own control class) then you can control all the access to the combo's items. The downside is that you'll have to expose any combo properties that t ...Show All

  • Visual Studio Express Editions Great Performance improvements

    I'm amazed with performance improvements which is growing since beta 1 compared with VS.net 2003. I'd like to know what percentage of C# Express is written in managed code. Thanks There isn't a great way to answer your question, but core components of Visual Studio remain as native.  New features, as they are added, go through the choice of being added as a managed component or as native. Several important parts of Visual Studio, such as the server explorer, properties window, refactoring, and lots more are implemented as managed components in the shell.  ...Show All

  • SQL Server Fulltext and Indexing

    I want to know that what is Fulltext and what is Indexing Is both the things are different from eachother or related. And wht is the concept of Searching in SQL. and last about Contains keyword. ...Show All

  • Visual Studio How do you Edit a Tracepoint in VS 2005?

    How do you Edit a Tracepoint in VS 2005 Clicking on it deletes the tracepoint... I note for the record that if your cursor is beyond the end of the tracepointed statement, that seleting "When Hit" will do nothing.  This is confusing - and maybe even a bug - because when the cursor is BEFORE the tracepointed statement, the right click displays the "Insert..." context menu vs. the edit an existing menu. ...Show All

  • Visual Studio Team System Distributed System template

    Hello, I've just downloaded Visual Studio Team System Beta 2 and started "looking into" the Team System features but was unable to locate the Distributed System Solutions project types when creating a new project.  Where can I find these Thanks, Scott Mead Marking this as the correct answer for now while Jyothi and Scott work on this offline so I can stop getting reminder e-mail every day ...Show All

  • Visual Studio Tools for Office Make existing workbook into a vsto solution

    Is it possible to make an existing excel workbook into a vsto solution by adding the 2 properties _assemblyname and _assemblylocation with appropriate values Do I need to do anything else Yes. Quite a bit of other stuff is going on here. A runtime storage control is added to the document and a manifest is embedded in it. More details on this can be found at: http://msdn2.microsoft.com/en-US/library/7ydwehbf.aspx If you want to do this then the best way is programmatically using the ServerDocument.AddCustomization method. http://msdn2.microsoft.com/en-US/library/ms185673.aspx Obviously you can ...Show All

  • Visual Studio Express Editions How to close parent form?

    I know that I can't do this in VB2005... It's not clear what you are asking. In Visual Basic 2005, closing the startup form ends the application. No matter how you show the second form, calling Me.Close is going to close the parent form and end the app. Steve Hoag Visual Basic Express ...Show All

  • Visual Basic Mysterious Message box

    For some strange reason whenever I use a messagebox.show command the said message box is blank. All windows updates are loaded on. VB.net 2003 has been uninstalled and reinstalled. Windows has been reimaged also. Weird I know. ANy Ideas Can you provide any more infomation on what you are trying to do, are you creating a windows application Does this occur on every project or just this project or just this occurence within a project Are you able to reproduce in a very simple example Does this occur on just this machine - or if you compile the sample and run on another machine does it work ...Show All

  • SQL Server Is ntwdblib.dll freely distributed by Microsoft?

    We have just installed SQL 2005 on a brand new server and have installed our software for our business solution. When I attempt to run the program, it says that it cannot find "ntwdblib.dll" Where is this file Am I missing a file from the install or what The error indicates that your application uses the DB-Library API. SQL Server 2005 does not include the files needed to do programming work on applications that use these APIs. The recommended alternatives are captured in SQL Server 2005 Books Online in section " Deprecated Database Engine Features in SQL Server 2005", which can als ...Show All

©2008 Software Development Network