DavidThi808's Q&A profile
Internet Explorer Development IE7 -- No more "history" button?
There's no history buttton on the tool bars on IE7, like there was on IE5. Is there an option to add one someplace Having to go find the history by using Windows Explorer is pretty lame. Just hit Ctrl-H to open up History window. Following up on this, who decides what gets an entry into the History list I visited https://partners.microsoft.com/PartnerProgram/ContactMicrosoft.aspx , closed the instance of IE 7. Launched a new instance of IE, went to the History list, but the page wasn't listed. (It's not https, because there are https sites in the list.) Thanks ...Show All
Visual Studio Tools for Office Deployment walkthroughs are useless!
OK. I love the concept of VSTO 2005. It took me very little time to develop an add in for MS Excel. It took me nearly 20 times the development time to deploy. This is the hardest environment I have ever had to deploy, I have developed in Foxpro, Standard VB .NET, ASP.NET etc. However, the walkthroughs for VSTO are useless. I followed these and my app would only work on the development machine. I kept getting the standard .NET security error. I used caspol, Deployment wizard etc to no avail. In the end I ignored the walkthrough step that said exclude assemblies and basically created my own set up program. This ended up working. I have to say I will be very reluctant to ever develop another solution based on VSTO again unti ...Show All
SQL Server Enable to start the Sql ENTERPRISE MANAGER
Can any one help me to solve this problem, I WAS ENABLE TO START THE Sql ENTERPRISE MANAGER for your information i have try to unregister n register the following dll sqlns.dll sqlmmc.dll sqllex.dll sqldmo.dll dtsur.dll odbcbcp.dll but still not working ...Show All
Windows Forms How to change data type of datacolum after data is filled?
I am using .NET 2.0. I have a tab splitted file and I convert it into a datatable after parsing it. But I don't know about the datatype of any datacolumn of datatable at the time of file parsing. Therefore by default the datatype of each datacolumn is string. After parsing, I bind this datatable to datagridview. Now when the user tries to sort a column of datagridview that has numeric or datetime values only, datagridview sorts it as string rather than numeric or datetime. I have observed that if I change the datatype of the datacolumn of datatable to int or datatime according to its contents then it is sorted correctly. So how can I change the datatype of datacolum after the data has been loaded in the datatable Any other way ...Show All
Visual Studio 2008 (Pre-release) Can we add an operation to a service description once the serviceHost has opened?
Initially my service has say two methods. I want to add a third method by calling one of the two methods. If any new client subscribes to the service it should be able to call all the three methods. The method which should be invoked when the dynamically added operation is called is implemented in the service class. Is this feasible yes i can create a service without defining an interface explicitly as u mentioned, but the behavior is the same as wat i'd posted when i added the dynamic operation. Thanks Arun ...Show All
SQL Server Accessing (writing into) Terdata by ado.net and SSIS
Hello everybody, my name is Christof and I#m currently trying to write into our Terdata Warehouse by SSIS. In the Management Studio we can perfectly access Terdata - reading from it - but we actually see no way writing back Data into that system. Is there any hidden feature, any configuration menu that we had’nt seen so far . In the software documentation we found a tip "ADO.NET" as Data Destination is’nt imlemented for now - please wait until .... I’m asking me if someone has had the same problem before and could help me out with a little tip. thx in advance! Christof Good luck with non-SQL Server destinations. Read through here for tips: http://forums.microsoft.com/M ...Show All
Visual Basic Object reference not set to an instance of an object.
Below is the code snip. Previously it was running fine but don't know what's the problem now. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: Line 401: Dim strImagefile As String Line 402: Line 403: If (txtfUpLoadfile.PostedFile.ContentLength > 0) And (Not txtfUpLoadfile.PostedFile Is Nothing) Then Line 404: strImagefile = SaveImageFile() 'Function to upload the image Line 405: strEmpImage = strImagefile Source File: Edi ...Show All
Visual Basic Show and hide a form
I have a form (frmResults) that shows a list of results for a name search. I would like to keep it open but hidden after the user selects a record to view, which opens another form (frmMain) and hides itself. The frmResults' Load event fills a table adapter based on parms passed to the form (first and last name). I have a button on frmMain that returns to frmResults using My.Forms.frmResults.Show and Me.Close. Problem: when I try to return to frmResults I get this unhandled exception: "Object reference not set to an instance of an object." It happens on the line where the table adapter is filled. Is there an easy fix for this or do I have to pass the name search criteria around to get the results to show again T ...Show All
Smart Device Development Problem related to database connection
hi, I m having an application that uses the database, from this application i call another application that also uses the database. if both of them try to use the database at the same time, it gives me error of file sharing problem, another application may be using the file currently. wht 2 do it is not possible to have connections at same database more than one at the same time i m using sql ce.Plz help. hi, thanx for the help. i installed Sql Server Mobile. I added the reference also. but dnt knw how to implement it.i mean, is it neccessary to install the cab file for tht on the device too. or gets installed automatically ...Show All
SQL Server What happen with Sql Server Express?
hi everyone, After a successful installation, I am not be able to connect using Sql Server Management Studio Express because of Server Name textbox appears empty. I put 'local' or my host name. 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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53) TIA ...Show All
Windows Forms Error on object Timer????
I have windows form and I have placed a timer to show date & time in my status bar. i put the following code in my timer.. StsBar_Config.Panels(1).Text = DateTime.Now.ToShortDateString I keep getting the following exception! why somebody..anybody please Exception Text ************** System.Exception: Exception of type System.Exception was thrown. at Projeto_DataConnect.Frm_Config.Timer1_Tick(Object sender, EventArgs e) in E:\VisualStudio\Projeto_DataConnect\Frm_Config.vb:line 212 at System.Windows.Forms.Timer.OnTick(EventArgs e) at System.Windows.Forms.Timer.Callback(IntPtr hWnd, Int32 msg, IntPtr idEvent, IntPtr dwTime) It is probably because the Tick event is running in another t ...Show All
Visual C# Problem using a app.config dont work
hello, I am Using the code described in the following link http://msdn2.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx private void button2_Click( object sender, EventArgs e) { ConnectionStringSettingsCollection connections = ConfigurationManager.ConnectionStrings; // Loop to get the collection elements. IEnumerator conEnum = connections.GetEnumerator(); int i = 0; while (conEnum.MoveNext()) { string name = connections .Name; string connectionString = connections[name].ConnectionString; string provider = connections[name].ProviderName; listBox1.Items.Add(name); listBox1.Items.Add(connectionString); listBox1.Items.Add(provider); ...Show All
Windows Forms Purpose of System.ComponentModel.Container components variable
What is the purpose of the System.ComponentModel.Container components variable which is created by the Windows Form Designer when it creates a form If I have an empty form it creates this object in the first line of InitializeComponent(). Once I visually add components to my form it removes that creation line and never uses the variable again. I do see where it is used as a container for components. For a Windows form the Contols property serves as a container for controls. ...Show All
Visual Studio Express Editions geting numeric data in and out of text boxes
Hello, Summary: How do I set up text boxes so that when I enter numeric text in one box (named X_Test_Input) , it will raise events that the other box (named X_Accel_Raw_Value) will collect/consume and display the data in that second box. Overview: This is my first attempt Windows programming. My goal is to collect six numbers from an embedded device over Ethernet (five to ten times a second) and display them on my computer so as to have them available for further processing. In dividing this into small steps, I first want to be able to get values from somewhere and display that data. Only after I get the basic windows display part of this working will I attempt to get the data from the embedded device. In my ...Show All
Software Development for Windows Vista Latest WDK
Hi, I want to know if with every release of Windows Vista there is a release of WDK. I downloaded Windows Vista RC1 Some time back, now I need RC1 WDK. But I am not able to find any link to download RC1 WDK. Please let me know which WDK I should use to develop drivers for Windows Vista(RC1) Regards, Sanjeev ...Show All
