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

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

baysurfer

Member List

Scurvy Lobster
krick
Emadkb
sanjeevm
curiousss
leovernazza
Francis Tracey
Umachandar Jayachandran - MS
Poma
QWERTYtech
Ather.
joeydj
Puzzl3b0x
e-maurizio
consultpete
Fahad349
Goat Spirit
biopau
AnubhavG
kok_cz
Only Title

baysurfer's Q&A profile

  • SharePoint Products and Technologies MOSS2007 standalone no search results

    Hi I have done a standalone install and added a couple of users, a couple of sites and a couple of documents. Searcing for any of these returns nothing. The default content access account (NT authority\local service) has Full read permissions to all zones under 'Policy for web application' in Central admin. A crawl has been completed but the following warnings are in the crawler log: " http://csciisris2 The object was not found. (the item was deleted because it was either not found or the crawler was denied access to it) Local Office Sharepoint Server Sites". Similarly for sps://csciisris2 and sts://csciisris2 Additionally there are some gatherer warnings in the event logs: "The start address < ht ...Show All

  • Visual Studio Express Editions Show URL title in title bar

    Private Sub WebBrowser1_DocumentTitleChanged( ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentTitleChanged this.Text = "Farscape Navigator - " + this.theWebBrowserControl.Document.Title ; End Sub I can not get it to show the page title in the title bar. I want to display the Web pages title in the title bar. Don't paste C code into a VB program! Try: Public Class Form1 Private Sub WebBrowser1_DocumentTitleChanged1( ByVal sender As Object , _ ByVal e As System.EventArgs) Handles WebBrowser1.DocumentTitleChanged Me .Text = "Farscape Navigato ...Show All

  • SQL Server How to display Rich Text Format in Textbox control in SSRS Report

    I have rich text format as field in dataset e.g <FONT color=#000000><B><FONT color=#00c060>Suspendisse</FONT></B> </FONT>augue diam, blandit quis, elementum sed, cursus at, sem. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Mauris porta vehicula ligula. <STRONG>Curabitur consectetuer</STRONG> <EM>massa</EM> . when this field is dropped in the Textbox it does not show it in rich text in report but displays in html format i.e the way it looks above in SSRS report .Please suggest how it can be handled. The following blog article shows an approach to draw RTF as images: http://blogs.digineer.com/b ...Show All

  • Visual Studio Documenting the App_Code directory ASP.Net 2.0

    Sandcastle is working Ok, and I'm using the "Sandcastle Help File Builder", and its working. But the problem, with ASP.Net 2.0 the xml file for the App_Code directory is not being created. I added this code (found elsewhere as a suggestion) to the Web.config file to get the xml for the other classes. < system.codedom > < compilers > < compiler language = " vb;vbs;visualbasic;_vbscript " extension = " .vb " type = " Microsoft.VisualBasic.VBCodeProvider, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 " compilerOptions = " /doc+ /optionstrict+ " /> </ compilers > </ system.codedom > Any ideas of h ...Show All

  • Windows Search Technologies Terms and frequencies?

    Hi, After running a query and getting the results back, is it possible to get the terms and frequencies for each document Thanks, Eric Hello E Robinson, There currently isn't a way to retrieve this information. You can query on the collumn Characterization (System.Search.AutoSummary in 3.0), but that will only give you the terms from the beginning of the document. If you want access to all of the content you can instantiate and invoke the IFilter to grab the content stream again. Paul Nystrom - MSFT ...Show All

  • .NET Development delete line in xml file?

    Hello I might be doing something odd... I have been working on a c#.net program that gets data from an oracle database and then puts that into an xml file. Insert, delete, update are done to the xml file, and when the user is finished, the information should be sent back to oracle db to update and commit. When a new record is inserted, it is inserted into a separate xml file from the one that has the data from oracle db. Before insert is done both xml files are searched to make sure the record does not already exist. When the record is inserted, it is just appended to the file so the new record is added after the end of the root tag. Next time I try to add a record and a search is done, an error comes up because the end of the roo ...Show All

  • .NET Development DW20.exe issues

    I have a web site and everytime I make a reference to my business/datalayers it times out and I can see DW20.exe running in task manager, If i remove all references to my business/datalayers my web site runs fine. My web app was working fine up until this morning. Everything is coded in 05. Has anyone else experienced this issue and if so what did you do to fix it So did you guys find an answer I have this process clog our web server almost every day, 100% CPU for minutes. The reason seems to be .NET Framework 2.0 Runtime crashes. Application: w3wp.exe, faulting module mscorwks.dll. Any ideas ...Show All

  • .NET Development The process cannot access the file because it is being used by another process

    Hey all This is annoying, I want to perform a copy or move or read operation on a file but the file is already open in word or notepad, whatever. No when I try for example to rename the file that is open in word the system tells me that I can't do it since word holds it. How can I do the same in C#, meaning checking if the file is open and alert which application holds it. Itzik Hi, What you can do is trying to aquire an exclusive share on the file, if you success it means that the file is not used by any other process. Use the FileShare enumerator when you open the file, therefore your steps should be: 1) Try to open a file with None sharing 2) Close the handle (otherwise not even ...Show All

  • Visual Studio Express Editions Serial Port: Writing Codes in HEX, not in ASCII

    Msgbox ("Hello World") :) I have some troubles with my serial Port. This time, I am adressing a DLP Projecotor. (PJ). The PJ listens only to commands it receives in hex format. The command 02h 01h 3e 03 makes the PJ switching on. When I write ComPort.Write("02H" & "01H" & "3E" & "03H") to the PJ, my Serial Port Monitor(monitoring HEX) says 30 32 48 30 31 48 33 45 30 33 48 Thus I wrote some ASCII to the PJ and the Oj does nothing. When I write ComPort.Write(Chr(2) & Chr(1) & Chr(122) & Chr(3)) my portmonitor is saying: 02 01 7A 03 and the PJ reacts correctly. It is quite long winded changing the decimal 122 to hex 7a. Now we come to my question: Is there a chance of ...Show All

  • .NET Development Help sending Emails from within C# code

    Hi, I need to automatically send Emails from within my C# code. Code written on my development machine works well and allows me to set my SmtpClient to be my own Mail server. However my live web site is hosted by a web hosting company based in docklands. When I try the same code here I get a ' Mailbox unavailable.The server response was: relay not permitted' message. I have even tried setting Network credentials (ie Username and Password) but get the same message. Changing the SmtpClient to local host makes no difference. The live web server has Mail Enable installed which says POP3, Smtp etc are all O.K and running. Finally I tried setting up Outlook Express, again though I could receive O.K I could not send. I ha ...Show All

  • Visual Studio 2008 (Pre-release) How to turn off anti aliasing for small text?

    Anti aliasing small text tends to make the letters look blurry and indistinct. I cannot find a way to disable the anti-aliasing of text in WPF and as a result label or button text looks really bad. Ideally I'd like to disable anti aliasing globally for font sizes below a certain size. How can I accomplish this -Ryan rfuller987@hotmail.com Hi Chris, Thanks for the reply. If antialiasing really can't be turned off in WPF thats a huge problem. While it may be a matter of taste, anti-aliased text simply doesn't look as good as non-anti-aliased text. It looks blurry. I put up this image quickly so we had an example of what i'm talking about: http://www.wishbin.com/temp/aliasinginwpf.jpg T ...Show All

  • Visual Basic Save data from a listbox to a .CSV file.

    Hi, I am pretty new to Visual Studio, but know enough about SQL. I am working on creating some applications with VB to access my SQL database. I created a listbox that is extracting some data from a table. I am trying to Save that data to a .CSV file, but I am having major issues. I would really appretiate it if someone could help me and explain why my code is not working. I used examples to get to this code, but lack of experience is helping me to get stuck at this point. Thanks!!! Code: Try With sdlgTextFile .AddExtension = True .CheckPathExists = True .CreatePrompt = False .OverwritePrompt = True .ValidateNames = True .ShowHelp = True .DefaultExt = "txt" .FileName = filename .Filter = _ "CSV Fil ...Show All

  • .NET Development Question about generics

    Here is a code sample . B and C are 2 classes that performs action on the object they get public class BaseClass <T> { public virtual void DoJob(T t) { Console .WriteLine( "in base class" ); } } public class B <T> : BaseClass <T> { public override void DoJob(T t) { Console .WriteLine( "in B" ); } } public class C <T> : BaseClass <T> { public override void DoJob(T t) { Console .WriteLine( "in C" ); } } I would like to hold an instanse of the base class for abstraction and to use some kind of factory to get the needed class to perform the DoJob. The factory will ...Show All

  • Community Chat Zune and audio book compatibility

    I understand that the Zune is not compatible with Audible file formats. With this in mind... 1. Are there ANY audio book formats that Zune is currently compatible with or that can be recommended 2. Would like to see a bookmarking feature included in Zune software. 3. Are there plans for a Zune forum 4. What is the process to log an enhancement request for Zune features thx ...Show All

  • Software Development for Windows Vista Pattern for updating custom Activity Properties without completing Activity

    Hi Most activities in my workflows are human activities and are therefore event-driven. The workflow blocks at each new activity waiting for a user to click "Complete" or "Approve" in the application GUI. These activities have a number of common business-logic properties, encapsulated in a custom base class. Example properties are: TargetCompletionTime, Priority, RequiresApproval etc. The values of these properties are tracked using TrackingExtracts and custom TrackingProfiles. This allows me to query the tracking service for the current state of my activities, including the values of the custom properties. The complication is that I need to be allow my users to update the values of these activity properties at any time without closing the ...Show All

©2008 Software Development Network