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

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

HaroldW

Member List

GLutz78
Pintoo Khaira
Devver
andradrr
RARiedel
_Quimbly_
Eric-NZ
Markus Rytterkull
lidiya
Col_
davidgreen24
DevDiver
Prabu.
Charlie Audritsh
Prof Bruce
Ecrofirt
Cool Screen Name
MurrayS
Moog
ahmedilyas
Only Title

HaroldW's Q&A profile

  • Internet Explorer Development write a custom link-bar for ie7

    I would like to write a link bar (the toolbar that holds favorites) with the same functionality as the link bar of IE7, except than I can have just icons for the links (no text). I would prefer write the plugin using managed code. Since I am totally new to IE development can you point me into the right direction where to start Or maybe I could even make the link bar of IE7 to work in that way ...Show All

  • SQL Server Confusion on Cube Design

    Hello everyone. I'm having a bit of trouble getting my head around designing a new cube and I'm hoping this forum can help. I have a database which contains the following simplified structure: tbl_Panelist: panelist_id tbl_Question: question_id tbl_Answer: answer_id tbl_Result_Set: panelist_id question_id answer_id I'm trying to design a cube which will allow analyzing of the counts of how many panelists answered each question by each answer. For example if Q1 has possible answers of A,B,C and Q2 has possible answers of X,Y, I'd like to be able to browse the cube and see X Y A 10 5 B 3, 2 indicating that 10 people answered Q1 with A and Q2 with X. My current thinking has been to create a ...Show All

  • Visual C# this keyword's cons, pros or nothing?

    Hello, I just installed Resharper Addon of Visual Studio and it pointed all the code where i used this keyword with a warning saying its a redundant qualifier. Its just my habbit to put a this keyword with instace variables so I can distinguish between function level and class level variable. But i dont know what effect "this" has Why Resharper is saying its redundant I'll be really happy to know what's effect of "this: keyword on the application code. Best regards, Rizwan Hello Peiter, Thanks for the sparing some time to look into my thread and anwering this. But I already know all you mentioned. My convern is what is meant by redundant here Does this mean C# compiler will have to do extra work to resolve thi ...Show All

  • SQL Server waittype NETWORKIO blocking spid on SQLServer 2000

    I have a series of processes being blocked - after running sp_blocker_pss80 I can see that the blocking spid is coming from a batch program that is issuing a 'sp_prepexec' event and has a waittype of NETWORKIO. It looks very like the problem fixed by hotfix: 884554 in SP4. The db is SQLServer 2000 and running the following command: SELECT SERVERPROPERTY('ProductLevel') GO Gives the result SP4 So I guess I have the hotfix but I'm still experiencing this problem. The event that is 'blocking' is a select statement on a large table. Running the same batch process on identical data in a test environment doesn't give the same problem. I'm not certain that other processing on the test environment is identical though so it is ...Show All

  • SQL Server The ALTER TABLE statement conflicted with the FOREIGN KEY constraint

    The ALTER TABLE statement conflicted with the FOREIGN KEY constraint "fk_Allergy". The conflict occurred in database "MSCPROJECT", table "dbo.Severity", column 'SeverityCode'. I think that the solution deals with using of WITH NOCHECK key word in order to add a constraint on a table that already have values. Rakoun /°\ ...Show All

  • .NET Development Sending Email using SMTP

    Hello, I am trying to send an email message using Smtp client from my windows form application. However, the message does not get send (even though I call SendAsync method, and apparently it sends the message) until I close the application. How can I make the message to be sent right away Thank you. If I use Virtual PC, that has no AV software installed, and I run the .exe of the application that sends the message it seems that everything is working like it supposed to. Meaning, it sends the message, without me closing the form first. Here is the code that I use: // Send Email Message. MailMessage mailMessage = new MailMessage (); mailMessage.To.Add(to); mailMessage. ...Show All

  • .NET Development Web.config and "The entry 'KEY' has already been added"

    My connection string of my web app (.net 2.0) is in the web.config: <connectionStrings> <add name="KEY" connectionString="VALUE"/> </connectionStrings> Everything was working fine until i got this error message System.Configuration.ConfigurationErrorsException: The entry 'KEY' has already been added. (...path...\web.config line 14) To solve the problem, i added a <remove name="KEY"/> before the <add/>. My question is: The key isn't anywhere else in the project, except in the web.config. How can it be duplicated Could you tell us the name of the key for the collection item. Also, are you using a connection object that maps to the configuration ...Show All

  • SQL Server How many drives can be mapped to 2 SQLServer on cluster

    Dear all, We have just configured a SAN system and 2 SQLServer clustered(A/P). The vendor has mapped 2 logical drives each one is accessed by each SQLServer ex: Logical Drives on SAN :- H: and G: Server S1 have accesses to H: and Server S2 have accesses to G: but at a time we can see both logical drive on each system but can access there mapped drives. Is this possible to have 2 logical drives on each server mapped with each other on the cluster server. Server 1 having drive H: and G: Server 2 having drive H: and G: Note : Vendor told us that there is a BUG in SQLServer 2005 that only one drive can be mapped with each sqlserver in a cluster. Please help Is there can Document Released from Micros ...Show All

  • SQL Server Copy Database wizard issue

    Despite the fact that both the package and the model db have the file locations set to e:\data\nnn, the SSIS package is creating / copying the files into C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data. This is running as a job - could it be a security issue I don't see any warning / error messages that would indicate an issue. Update... This is sounding more and more like a bug. I changed the model db file locations to the c:\ drive (diff location but known access). no change I changed the destination file location in the wizard-created SSIS package to the c:\ drive. no change No matter what I do, the wizard insists on putting the files into the program files directory listed above. Both DB's li ...Show All

  • Visual Studio Team System MetaData.xml & MethodologyTemplate.xml

    Hi How can I find these files where are they located exactly and how can I have access to them thnx Hello The files you are referring to are old TFS process template files that have since then been replaced or removed from the template.The main xml file in TFS V1 is called processtemplate.xml and that is probably what you want to look at. To get the process template files, connect to the Team Foundation Server using Team Explorer, then use the Process Template Manager to download the required process template on to client machine. Do let me know if there are any additional questions! Thanks! Yogita ...Show All

  • Visual Studio Express Editions Need help editing code

    This code basically sends what is put in textbox1 to my email address, when i started debuggin, my virus protection said application tryin to send a email, so i thought it was workin, then it came up with email sending failed, that came up on the actual application, here is the code. i dont no which parts works, 1 part sends the information when button1 is clicked the other sends the information when the text is changed in textbox1.  This is the error See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.Net.Mail.SmtpException: Failure sending mail. ---> System.IO.IOException: Unable to read data from the transport co ...Show All

  • .NET Development Getting an System.Data.OracleClient.OracleException : ORA-22275: invalid LOB locator specified when connecting to a 10.1.0.3 DB

    I have code that works when running against an Oracle 10.2.0.1 DB, but throws an System.Data.OracleClient.OracleException : ORA-22275: invalid LOB locator specified error when I try to run it against an Oracle 10.1.0.3 DB - I have searched everywhere on the web trying to determine if this is a bug, but couldn't find anything - I tried both the MS and Oracle providers and both have the same problem. Below is the code - all I am trying to do is update a clob in the db. Any ideas using (OracleConnection connection = new OracleConnection(CnStr)) { connection.Open(); string SQLStatement = "select sys.xmltype.getclobval(personal_views) from p_users where user_id="+userID.ToString()+" FOR UPDATE" ...Show All

  • Internet Explorer Development Automate Margin Settings from HTML to Word

    Using Windows XP, IE 7, and Office 2003. I have a web application that creates a document to be copied and pasted to Word. I would like to be able to set the margins for the document when it is placed into the Word document automatically regardless of the default settings inside Word. Are there any scripts, CSS, methods, or other code which can be embedded in the copied text that will set the margins inside Word ...Show All

  • Visual Studio Express Editions Download Visual Studio Express Edition

    Hello, some times ago there was offered the download for it for offline installation (to burn a CD). Is this no more available A more exact link: http://msdn.microsoft.com/vstudio/express/support/install/ ...Show All

  • Visual Studio Express Editions how to execute my exe before main exe ?

    Hi i have 2 exe file. first is main exe and second is my exe . i want ..when end user run main exe . my exe first run and calculate some conditions if true then run main exe otherwise do not run main exe . but how to do that They would still run any other exe files except the third... As said, just combine the projects in 1 so you only have 1 project, 1 file, and that project can do whatever it wants. ...Show All

©2008 Software Development Network