Software Development Network Logo
  • Smart Devicet
  • Audio and Video
  • Windows Forms
  • Visual Basic
  • Visual Studio
  • IE Development
  • .NET Development
  • Game Technologies
  • VS Team System
  • Microsoft ISV
  • SharePoint Products
  • Visual FoxPro
  • Visual C#
  • SQL Server
  • Visual C++

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

DeanoCalver

Member List

Amde
Rachad
TheVisual
shaw79
moff
Jason Zhang
NetPochi
HSBF Lewe
bwagner
Jegant
usefulacct
ssouki
Ido Ran
skeezix
Yustme
elixic
Brad Smith
Philip Coupar
Luis Esteban Valencia Muñoz
CKLEIN
Only Title

DeanoCalver's Q&A profile

  • Visual Studio Express Editions Having Webbrowser functions to specify tabs?

    I am currently having some trouple getting some of the standard webbrowser functions to work properly when using a tab system. I have it setup so that you can create new tabs with a button click with a webbrowser in each one, but I can't figure out how to get the "Back", "Foward", etc. to work for the visible tab. I am also having trouble getting the address bar to work properly. Can someone please show me how to do it Here is my code so far: Public Class Form1 Public Class WebBrowserTabPage Inherits System.Windows.Forms.TabPage Private WithEvents WebBrowser As WebBrowser Public Event Navigating(ByVal sender As Object, ByVal e As EventArgs) Public Event Navigated(ByVal sender As Object, ByVal e As EventArgs) Public Sub New() ...Show All

  • SharePoint Products and Technologies document library upload event

    Is there any way to write a custom even for a document library so that when a user uploads a document (and it has a certain custom property checked) the custom event creates a copy of that document in a network share directory Cheers, check this class http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spitemeventreceiver_members.aspx here is a sample I found in one of the blogs http://blah.winsmarts.com/Post.aspx postID=68 ...Show All

  • Software Development for Windows Vista *URGENT* APPCRASH --> Japanese-VISTA (Ultimate) OS + Japanese-Office2007 IME

    When I try to uninstall my CD it crashes when receiving the return value from the dll. This dll just checks whether mutex for that application exists or not. This happens only in Japanese-VISTA (Ultimate) OS + Japanese-Office2007 IME is installed. But when I uninstall Japanese-Office2007 IME my uninstallation was successful. I verified with Japanese XP OS also the above combination but it works fine. Please refer to the problem details below. Translated to English -------------------- Problem Event Name: APPCRASH Application Name: setup.exe_InstallShield Application Version: 12.0.0.49974 Application Timestamp: 4474907b Fault Module Name: StackHash_04ce Fault Module Version: 6.0.6000.16386 Fault Module Timestamp: 4549 ...Show All

  • SQL Server Reporting Maneger Failed

    Hi When I try to run de ReportManeger in the internet explorer, Show an error: The report server is not responding. Verify that the report server is running and can be accessed from this computer. Well, I check and te Report server is running. When I try to run de ReportServer in the internet explorer, Show an error: The report server has encountered a configuration error. See the report server log files for more information. (rsServerConfigurationError) Access to the path 'c:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\RSReportServer.config' is denied. Also when I try to use de Surface Area Configuration for Features, Windows Integrate Security, this errror is showing TITLE: Su ...Show All

  • Visual Studio Team System Team Build error MSB4019

    I have a database project that I am trying to build and am getting an MSB4019 error on the the AfterDropBuild" task. The actual error is as follows Target AfterDropBuild: c:\build\Larrys test\DB\Sources\Database Projects\Database1\Database1\Database1.dbproj(74,11): error MSB4019: The imported project "C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamData\Microsoft.VisualStudio.TeamSystem.Data.Tasks.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. Done building target "AfterDropBuild" in project "TFSBuild.proj" -- FAILED. Looking at the build machine I do not see the missing object although there is a folder called TeamBuild that contains Mi ...Show All

  • SQL Server FTS. Can't Create FullText INDEX

    I've got fresh Installed SQLExpress 2005 Adv. with a following: WinXP Pro, Developer PC, Admin/Full rights, Antivirus PC-Cilin was switched off for the installation. Enable User Instance - 0 (clear check box during installation) SQL Collation: Dictionary order case sensetive for1252 Char set SELECT @@language: us_english create fulltext catalog testAPFullTextcatalog , Sp_help_FullText_catalogs : 5 testAPFullTextcatalog C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\FTData\testAPFullTextcatalog 0 0 create unique index indexName_Comment on dbo.FullTextSearchTestTable(RecordID) sp_configure: allow updates 0 1 0 0 clr enabled 0 1 0 0 cross db ownership chaining 0 1 0 0 default language 0 9999 0 0 max text repl size (B) 0 2147483647 ...Show All

  • Visual C# Formating output to a textbox

    Hello I have a noob question. I am writing a little app to convert the temperature between farenheit and celcius, and would like to only display one decimal point in the textbox. I would prefer to see 70 degrees farenheit displayed as 21.1 degress celcius as opposed to 21.11111. Here is my code private void buttonConvert_Click( object sender, EventArgs e) { double degreesFarenheit; double degreesCelcius; if (textBoxDegreesCelcius.Text == "" ) { degreesFarenheit = double .Parse(textBoxDegreesFarenheit.Text); degreesCelcius = myConversions.FarenheitToCelcius(degreesFarenheit); textBoxDegreesCelcius.Text = degreesCelcius.ToString(); } else { degreesCelcius = double .Parse( ...Show All

  • SQL Server Getting HelloWorld_CLR sample to work

    Hello, I have been trying to get the app installed and running; I've updated the install script to point to the right server and it worked. I've run the ALTER DATABASE ssb_HelloWorld SET ENABLE_BROKER ; and the EXEC sp_configure 'clr enabled' , 1; and the CLR seemed to have problems while getting replies back from the server. However after repeated retries it worked well. Sporadically I would see an error. After uninstalling the sample and installing it again - to document the steps previously taken - the CLR application is no longer receiving messages from the server. Any idea about what setting might be needed Thanks, Hi Rushi, After successfully sending a m ...Show All

  • Visual Basic Creating Tables with sql express

    I know this deals with ms sql express more so than vb.net but it correlates b/c I want to edit the database with vb.net express. On to my question... I'm trying to learn how to use ms sql express using the SQL Express Manager. However, I can't seem to figure out how to create tables. I'm reading http://msdn.microsoft.com/SQL/2005/getstarted/default.aspx pull=/msdnmag/issues/04/09/expresseditions/toc.asp  but it seems outdated and I can't replicate what he's doing in the tutorial. I'm not a total novice when it comes to programming, but SQL Express Manager isn't as intuitive as one might think, there's no "Create Table" context menu. Can anyone throw me a clue Thanks for posting the information. The connection string looks OK. I ...Show All

  • Audio and Video Development Sound card driver causes blue screen

    I just don't know where to report, but i got beta for find and report bugs, so i do so. I installed driver for my creative sbpci 128 having ensoniq chipset, it works fine except if it is not disabled at boot vistabeta2 got blue screen, and reboot, if i disable sound card in safe mode, it boots fine, and if the sound card is enabled after boot it works, but i have to disable it before shutdown This is the problem called "squeal of death". Try search it on google. Many users of audigy 2 zs notebook have this problem. No solution yet. ...Show All

  • Visual Studio 2008 (Pre-release) Help: RC1 ListView Memory Leak

    I've got a memory leak problem with the ListView. I just have a long list of items that I put in a list with 2 GridViewColumns, and as I scroll up and down the list the memory goes up and up and up, until I eventually run out of memory on my machine if I do it long enough. I find it hard to believe that there's a problem like this with list view, so I'm wondering what I've done wrong. I'm running RC1 on Windows XP x64. I've done a real simple example. The code is below. You can run an XBAP version from here: http://150.101.100.238/~john/LeakyList/LeakyListXBAP.xbap In task manager, watch PresentationHost.exe Mem Usage grow as you scroll the scrollbar up and down. Press "Collect Garbage" and the Mem Usage won't go down ...Show All

  • Visual C++ CHeaderCtrl 16-bit bug/limitation

    Using latest Windows XP and comctrl32.dll 6.0 I run across CHeaderCtrl bug where the control does not display any columns whose rectangle left coordinate are past 32768. I have an owner-draw CHeaderCtrl with over 800 columns ( col_1, col_2, etc. will do ) Looking in the debugger I found out that CHeaderCtrl::DrawItem is not getting called for items at the end of the list. For the last item that is displayed correctly LPDRAWITEMSTRUCT rcItem is rcItem {top=0 bottom=36 left=32744 right=32787} You run across the same limitation if you don't use owner-draw style. Control does not display any of the columns at the end of the list whose rectangle are beyond 32768 boundry. ...Show All

  • Smart Device Development The queue does not exist or you do not have sufficient permissions to perform the operation.

    hi i have taken this example at http://msdn2.microsoft.com/en-us/library/ms180970.aspx this is used to transfer messages between device and desktop queues this application run ok but it doesn't send the messages to desktop queue i am using vs2005 and and emulator pocket pc-wm5.0 please suggest thanks arvind Yes, that's how MSMQ works - your application sends a message and MSMQ service delivers is whenever it could. You won't get an error even if message is undeliverable, e.g. sent to none existing host or even if device has no network at all. You can configure timeouts and get notified of expired messaged, but there’s no error right away. As to no messages been delivered, do you ha ...Show All

  • SQL Server step by step SQL2000 failover cluster upgrade to SQL2005

    is there such a paper if so, can you pls point me to it thx in advance Does this mean that it's not possible to do an in-place upgrade of a SQL Server 2000 cluster if that cluster contains shared resources Instead, I need to install side-by-side and then switch over Wouldn't basically all clusters contain shared resources ...Show All

  • SQL Server I am trying to schedule a job not to run on holidays in SQL server 2005.

    Hi, I want to schedule a job that runs daily but not on holidays and I am using SQL server 2005. Looking for some advice... thanks, Do you mean even in Saturdays and Sundays You can schedule a job to run between Monday to Friday on weekly basis, and for any additional holiday requirement you need to follow what is suggested above. ...Show All

©2008 Software Development Network