E Jensen's Q&A profile
Visual Basic Inputbox
hello. A question please. What is the control VB.net similar to the inputbox (vb6) Thanks... ...Show All
Internet Explorer Development IE7 Side Search Pain (Pane)
Hi All, Thought I would open a new thread to address the issue of the Side Search Bar in IE7, commonly referred to as Side Search Pain. Below is a copy of my reply to a user query that may address the issue Hi Robert, I think I know what your getting at.... The Side Search bars from Google url=http://www.google.ca/ie dispaly the search results in the same window as the side bar. In IE6 you can click on a search result link and the link will open up in the main window of the browser. In IE7, however, when you click on a search result link(from a Google Side Search bar), the link opens in the side bar window (panel)! This is a know feature of the Google(ie) side bars in IE7. (Search Microsoft.public.internetexplorer.general for 'Sid ...Show All
Visual Basic Date Problem
Hi everyone~ I’m stumped on something that I thought would be simple. I’m trying to figure out how to determine if the LastModifiedDate of a file was yesterday. Not 24 hours ago, but simply yesterday. I have a third party program that converts files and moves them to a specific folder. Anything converted and moved after midnight gets a new date in the file name (MM/DD) and continues doing it’s thing. I want to set up an event that will work with only files that were created yesterday, even if they are less than an hour old. I don’t know if I am on the right track, but so far I have one variable (TodaysDate) as 09/03/06, and the file’s DateLastModified (FileDate) as 09/02/06. But now I can’t figure out how ...Show All
Visual Studio Express Editions Spell checker question?
Hello. In amongst the different things ya can add to ya projects, does Visual Basic 2005 Express Edition have a spell checker ya can add to ya project Av just finished making a pad wich a can open and save text file, rich text files etc, and I was wanting to add a spell checker. Thank you. Thanx for that Ken Tucker. I tried it but can't download it....Page Not found Error. Is there any others ya might know of please Thank you. ...Show All
Windows Forms Manual showing tooltip ?
I want to manual show the tooltip for my textbox. For example I put a textbox and a button. So every I click the button the tooltip on textbox will appear. I have use code like this on button click event : this.tooltip1.show("", this.textbox1, this.textbox1.width, this.textbox1.heigth, 10000); But still the tooltip not showing, but when my cursor focus on the textbox it will show. If there anyone have conclusion please tell me fast, URGENT. Regrads, Ariston Darmayuda In addition, if you want to hide the tooltip, try: this .tooltip1.Hide( this .textBox1); ...Show All
Visual Studio Team System ASP.NET Development server to use .NET 1.1 for webtesting
I have recorded a series of web test and parametrized the server, so now I need to run them all on my box using ASP.NET Development server (to measure some .NET memory allocation impact). However, since test scripts were recorded using .NET1.1 server it does not include __EVENTVALIDATION which is now required by ASP.NET Developement server running under .NET2.0. Nor do I have the option of manually adding this to scripts (due to the sheer number of locations I would have to do it in). Besides I want to use .NET 1.1 to begin with. The question is, is there a way to instruct Development server to work under .net 1.1 (like I can instruct iis to use it), or do I have to install IIS for this (which I would prefer not to). PS> I asked h ...Show All
Visual Basic Need To Create Search Bar For Database
Greetings, I am completely and utterly amazed at the lack of information on how to create or employ a search bar. This is the one simple attribute that has made the internet what it is today. Nearly every program I have ever used has a search bar which, when data is entered into the textbox and the search button is clicked, it returns matching criteria. However, I have searched (Imagine That) Google, Yahoo,LearnVisualStudio.net, MSDN, and Help for three days on how to create such a simple procedure and have found nothing. What I need to do: I am creating a database where I have all my Employees Information which includes columns: [Employee Number], [Emloyee First Name], [Employee Last Name], etc.... I have created the database and ...Show All
Internet Explorer Development Web Browser inside a tabbed page flickers on resize
Hi, Can any one offer a solution to the resizing flicker problem when using a tabbed page and web browser control I have used double buffering to no effect and need a quick solution to this problem as the work is already live in a production environment and need to fix it without having to implement new controls. Please help. Thanks. Hi Dave, As far as I can see, any page loaded into a web browser control flickers. Place a tab control with a tabbed page onto a sizable form, set the tab control's dock style to fill or anchor styles property to stretch with form and load any document into the web browser. Resizing the form will cause the page loaded to flicker. Thanks ...Show All
Software Development for Windows Vista Bound Dynamic properties not retained after save - Using Vihang Dalal's Designer Rehosting
I am using Designer Rehosting code posted by Vihang Dalal. I am also using DynamicPropertiesActivity from Ghenadie's blog. I create a workflow with DynamicPropertyActivity as one of the activities. Added 'strTest' to DynamicProperties collection. In order to be able to use this attribute in the rest of the workflow to bing to other activities, I believe I have to bind 'strTest' to a new member. So created a new Property member say dynProp_strTest. I can now use dynProp_strTest to bind to other activities. So far so good. The issue comes up when I try to save this workflow and then reopen it again in Designer. I can no longer see the new member 'dynProp_strTest' that I created. I understand it is getting lost during Save, but do not exactly ...Show All
Visual Studio Team System Recursive Copy within Team Build
I can't see what I am doing wrong, can someone please help me The scenario is that I would like to copy the output generated by Team Build to a specific location (publish a web app on a web server). To do this I implement the copy task in the CustomCopy target in the file CustomAction.target file. Using the instructions on for how to do recursive copies. Below is the extract from the .target file: < ItemGroup > < MySourceFiles Include = " $(DropLocation)\$(BuildNumber)\**\*.* " /> </ ItemGroup > < Target Name = " CustomCopy " > < Copy SourceFiles = " @(MySourceFiles) " DestinationFiles = " @(MySourceFiles->'C:\Inetpub\wwwroot ...Show All
SQL Server DateTime comparison with some exceptions
I have StratDateTime and EndDateTime fields in the table. I need to compare this two datetime fields and find seconds. I can use DateDiff but there are the following exceptions: 1. Exclude seconds coming from the date which are Saturday and Sunday 2. Exclude seconds coming from time range between 7:01pm and 6:59am 3. Exclude seconds coming from Jan 1 st and Jul 4 th . What you need to do is create a user defined function to calculate your desired value. It will look like this, I haven't put in all the conditional code for you, that will take a while, but you get the idea. CREATE FUNCTION BusinessSeconds(@StartTime datetime, @EndTime datetime) RETURNS int AS BEGIN DECLARE @retVal int SET @retVal = datedif ...Show All
Visual Studio Team System Add new Rule in Rule Collection of fxcop
In fxcop v 1.35,I added custom rule in Rule folder of fxcop and then open fxcop,a message "Unable to load rule assembly 'c:\program files\microsoft fxcop 1.35\Rules\DummyProj.dll': Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information." is generated. It's urgent Plz help me. Thanks in advance FxCop can be downloaded from http://www.gotdotnet.com/team/fxcop/ . Mukesh, if you send me the rules library (my email address is in my profile), I can take a look at it for you. ...Show All
Visual C++ This application has failed to start because the application configuration is incorrect
Re: This application has failed to start because the application configuration is incorrect I have built a small console application (the .exe is 17k) that I created in Visual C++ 2005 Express. I want to share it with 10-20 users working on XP platforms. It processes data using file i/o, thats all. However, I have found that on some machines it does not execute. I get the error message in the subject above. I figured out using Dependency Walker ( www.dependencywalker.com ) that my application requires the following: KERNEL32.DLL MSVCP80.DLL MSVCR80.DLL MSVCRT.DLL NTDLL.DLL The machine that my application did not execute on was missing MSVCP80.DLL and MSVCR ...Show All
SQL Server Help Please...request to send data to the computer running IIS has failed
Hello, I am trying to complete the BOL sample " Creating a Mobile Application with SQL Server Mobile". Using SQL 2k5 and VS Team Suite. I have the emulator about to get on to the internet and can even get to the http:// sqlce.domain.com/sqlmobile/sqlcesa30.dll url but when runing the vb.net code I get the error 28037 "A request to send data to the computer running IIS has failed. For more information, see HRESULT.". Any help would be greatly appreciated. No software firewalls are running. I have a dns entry that points to my laptop for testing. The sync function code is below. Sub sync() Dim repl As New SqlCeReplication() repl.InternetUrl = "http://sqlce.domain.com/SQLMobile/sqlcesa30.dll" repl.Publish ...Show All
SQL Server Fourteen Mouse Clicks Just to Install the Print Driver???????
In order to print SRS reports, a small print driver must be downloaded. That driver "RSClientPrint Class" is installed in "Downloaded Program Files" in the Windows folder. On our site, it takes 14 mouse clicks to install that software. Savor this for a moment....... When trying to begin using SQL Server Reports, your ultimate customer is greeted with a message indicating that "The software you are installing has not passed Windows Logo testing to verify its compatibility with Windows XP" " Continuing your installation of this software may impair or destabilize the current operation of your system either immediately or in the future. Microsoft strongly recommends that you stop this installation ...Show All
