GabeOSM's Q&A profile
Windows Search Technologies #msntb_toolbar_full_name#
I have the following sign come up on the screen. #msntb_toolbar_full_name# is unable to load config file. If you recently upgraded to a newer version of #msntb_toolbar_full_name # and have not restarted your computer since the upgrade,please try resarting your computer.If the problem persist,please reinstall the #msntb_toolbar_full_name#. I'm currently running WXP Home Edition,IE7. W Defender.This problem only occured after I complet ...Show All
Visual Basic How can i that one of function's parameters will be null/defult?
How can i that one of function's parameters will be null/defult like: public function Hello( ByVal the_name as string , ByVal nice_level as integer ) Hello("joy",10) Hello("joy") I want to do a defult of nice_level will be 0. VB also supports marking arguments with the Optional keyword and providing a default value, but C# and other languages don't support this and have a hard time ...Show All
Visual C# Comboboxes datasets, text and values
I'm a newb to c# programming I usually work in php.. I have a combo box in my project, that I use to get a list of options from another table for an insert querry, uses a dataset when I set the textmember to the name field of the table it works great, but I can't figure out how to get the id for the row without either using another a querry stored proc or trigger but I know there must be a simpler way to get this for when I insert into the table ...Show All
Visual C++ How to keep the window
I used win32 console to make some small program. After compiling and linking I execute the program. Everthing is ok, I want to see the output. But the window always vanished in a second. How can I keep the window and examine the result Thank you indeed! Add a "cin" to force the console to pause for you. See the following previous post that deals with the same issue: http://forums.microsoft.com/msdn/ShowPost.aspx ...Show All
Windows Forms requirements for installing .net framework on windows 98
hello which requirements do i need for installing .net framework on windows 98 and on which site can i find these requirements thank you for the help and for the time You <i>can</i> install the .NET Framework on Windows 98, as ...Show All
Visual Basic How do I enter new data into a drop down combo box
I have a form for employees that is linked to an "Employees" table. The form has a combo box that is linked to a "Cities" table. The combo box has a list of cities that the user clicks. The corresponding integer value for the city is stored in the employees table. What if the list doesn't have the City that the user needs. Is there a way to enter a new City into the Combo box that will refresh the list and allow the user to then select the City ...Show All
SQL Server combining 2 select with count and datediff into 1 select. need help.
I have created two select clauses for counting weekdays. Is there a way to combine the two select together I would like 1 table with two columns: Jobs Complete Jobs completed within 5 days 10 5 ------------------------------------------------------------------------------------------------- SELECT COUNT(DATEDIFF(d, DateintoSD, SDCompleted) - DATEDIFF(ww, DateintoSD, SDCompleted) * 2) AS 'Jobs Completed withi ...Show All
Visual Basic Parameters in TableAdapters
In a project done to test some feautures in VB 2005 we create some datasource and a datagridview in order to show data from a simple table using parameters. Dataset is: Comprobantes, Table is tb_datos and datagridview is comprobantesDataGridView. The code to fill the table adapter is: Me .comprobantesTableAdapter1.FillTemp( Me .Comprobantes.tb_datos, 2005, 1, 8888) Me .comprobantesDataGridView.DataSource = Me .Comprobantes.tb_dat ...Show All
Visual Studio Team System TestResults directory, external resources
Hi, I'm having problem running my tests, accessing an external xslt file resource. I have "Copy to Output Directory" set to "Copy always", but when i run the test the assembly is run from the TestResult, testrun directory, meaning that the file is not copied to the used output directory... I saw a an old similar discussion about app.config files, but this regards the released .NET Framwork 2.0. Is there another mechanism for doing ...Show All
Visual Basic Request: vb6 application setup
Hello Friend, Please give any hint whatever you know about it. I want to develop an application which can install given hotfixses & updates (.msi) without restarting untill all are installed Is there any way to execute command line in vb without showing dos box Thanks Regards Nikhil ...Show All
SQL Server query in textbox
Can I directly write a query in textbox This textbox is in the header ="select field from tblHCVSRField where fieldid=1" I believe you can reference the value using this syntax: =First(Fields!YourField.Value , "DataSet1" ) ...Show All
.NET Development XslCompiledTransform
We have just begun looking at moving an existing ASP.Net application from v1.1 to v2.0. In early tests we appear to be loosing performance when using the XslCompiledTransform object as opposed to the XslTransform object. Our tests have been run with very simple stylesheets as well as the somewhat heavier ones that we currently use in the application. Everything I have read states that the new object is considerably more performan ...Show All
Visual Studio Express Editions Help! packages not loading properly
Hello, I managed to download and install VS express OK. However, when I start it up, I get an error message that says: Package Visual Studio Common IDE Package has failed to load properly (GUID = {6E87...5B7C}). Please contact Package vendor for assistance... It allows me to go ahead and start using VS. Then when I try to get the properties of a project I get a similar error message: Package Visual Studio Project Settings and Designers Packag ...Show All
Windows Forms Searching files in directories
hi.. how do i search files in a directory using file attributes like modified date,file size,create date time using .Net. Regards dhn Here is a self-explaining example: DirectoryInfo directory = new DirectoryInfo("c:\mydirectory"); foreach ( FileInfo file in directory.GetFiles() ) { if ( file.CreationTime.Date.Equals( DateTime.Now.Date ) { // Found a file that was created to ...Show All
Visual Studio Team System Create Tests doesn't work...
I have a solution with 9 C# projects in it: 1 WinForms application, 4 class libraries, and 4 test projects corresponding to the class libraries. The EXE and the 4 class libraries implement branches of a rooted hierarchy of namespaces (not sure if that's significant, but thought I'd mention it). In one of the class library projects, if I add a new method to a class that already has a corresponding unit test class, everything's fine. In another of ...Show All
