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

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

Shepherd_85

Member List

Vighnesh Prabhudesai
Maeestro
astralboy79
Roopesh Babu Valluru
arro239
Izzy545
thussain
Alvin Kuiper
AdeptBlue
Snow Teo
maliger
markko52
braymond
mbaclawski
JoeChip90
UppyJC
Martin Unterholzner
Aaron Moore
angrypilot
CharissaJB123
Only Title

Shepherd_85's Q&A profile

  • .NET Development Xml Data Type??

    Hello again, is there any Data Type for a xml by example public xml datatype myxml; There are several different Xml classes you can use in the System.Xml namespace. Here is an example of using one of them: .csharpcode, .csharpcode pre {font-size:small;color:black;font-family:Consolas, "Courier New", Courier, Monospace;background-color:#ffffff;} .csharpcode pre {margin:0em;} .csharpcode .rem {color:#008000;} .csharpcode .kwrd {color:#0000ff;} .csharpcode .str {color:#006080;} .csharpcode .op {color:#0000c0;} .csharpcode .preproc {color:#cc6633;} .csharpcode .asp {background-color:#ffff00;} .csharpcode .html {color:#800000;} .csharpcode .attr {color:#ff0000;} .csharpcode .alt {background-color ...Show All

  • SQL Server insert .... into question

    DECLARE @myDoc xml SET @myDoc = '<Root> <ProductDescription ProductID="1" ProductName="Road Bike"> <Features> </Features> </ProductDescription> </Root>' SELECT @myDoc -- insert first feature child (no need to specify as first or as last) SET @myDoc.modify(' insert <Maintenance>3 year parts and labor extended maintenance is available</Maintenance> into (/Root/ProductDescription/Features) [1] ') SELECT @myDoc Given the sample above, can we change the "[1]" with a value coming from a variable. I've tried the code below but I'm getting an error. into (/Root/ProductDescription/Features) [{ sql:variable("@RowID ...Show All

  • Software Development for Windows Vista how to know parent process is terminated or not

    Hi I am having a service. i launched a process from that service in every session. Now i want to terminate that processes when ever the service got terminated. Can i pass the handle for the service to process in user session through command line or shared memory and wait for termination of that service by using WaitForSingleObject. Or is there any other way for achieving the same. I am using windows vista Regards Rohit ...Show All

  • SQL Server Derived Column or script

    Dear All, I am pretty new to SQL2005 technologies. I have a table like this: Name Code Peter 10 Eric 20 I am interested in translation of the “code” to “job role”: Name Code Job role Peter 10 Director Eric 20 Consultant I have tried to use Derived Column and also script – but I am unable to get it to work. Any hints/solution would greatly appreciate. Best Regards, T A simple example without NULL checking etc In the 'Derived Column' task add a new column 'Job Role' and set the expression to b ...Show All

  • SQL Server Retrieving a list of Event Classes

    Hi, I have been trying in vain for the last few hours to retrieve a list of EventClasses for a particular Notification Service instance. Its a web application that I'm building I want to be able to populate a drop down list with all the notifications a user can subscribe to. Any advice on the subject would be greatly appreciated. Regards In relation to the above its actually a list of subscription classes that I wish to retrieve from the notification services instance and then the user will be able to select which one they wish to subscribe to. Sorry about the mix up. Regards ...Show All

  • Windows Live Developer Forums Newbie. I want to enhance the image quality.

    Hello, this is very basic, but I need to know the power and flexibility of this tool. I need to see in a superior level of detail, in 3D view, a city with a few mounts... ( I don't need buildings, just the terrain ) But everything that is at a certain distance from the camera looses quality (geometric detail level and image quality). I know this is done in order to increase render speed, to save memory and bandwidth... but I need more quality, and I'm ready to pay the cost. Is there a workaround to increase the quality, someone knows a website, parameter, anything that might help me please I need it, even if it takes quite a long time to display one single image. I need excellent quality. Thanks in advance! Albert G ...Show All

  • SQL Server Reporting Services 2000 Standard Edition <> Internet Access

    Hello people, There are quite a lot of threads about deploying Reporting Services for Internet Access. Some say you can't use the Standard edition for global access, some say you can. The problem is that I can't find any hard evidence in MS material like the deployment guide. I only wan't to know if it's possible to deploy a Reporting Services 2000 Standard Edition for Internet Access with anounymous access. Does someone can tell me why it's not possible Any resources that say it can't be done Many thanks! Worf ...Show All

  • Windows Forms Need help with formating a default cell style

    I have a DataGridView control that contains two columns that I'm trying to format. The first is a date which is working as expected and the second one contains strings with leading 0(zeroes) that I'm trying to remove with TrimStart: Me .DataGridView1.Columns(1).DefaultCellStyle.Format = "MM/dd/yyyy" ' This works correctly Me .DataGridView1.Columns(3).DefaultCellStyle.Format.TrimStart("0"c) ' This compiles but makes no changes to the strings The database colunms contains string like: "00003" and I'm trying to display just the "3" in the control to minimize the column width. ~DeBug Yes! Thanks Ye for your help and it's now formatting all three col ...Show All

  • Windows Forms Treeview Question!

    I’m using a tree, I’ve populated it fine. But if I have a form with a tree on it, the tree is expanded . Then when there is no activity on the pc for a while I hide the forms, show a log on screen. But when the user logs on again I show the forms again. But the tree is then collapsed on these forms, why did it collapse and not stay expanded Is there a reason it does this Is there a way to stop it from collapsing by itself What would the appropriate solution be Also when filling the tree, I do not want it to scroll down. I use treeGLAccounts.BeginUpdate(); //all my code here to fill the tree treeGLAccounts.EndUpdate(); I thought using the above would not make it scroll down when filling ...Show All

  • Internet Explorer Development submit() inside onsubmit

    The problem that appears to me is that with IE 7.0 POST of form is sent twice and with Firefox 2.0 once. The problem is of engine of JScript of IE or of engine of Firefox When executing with IE two registries in data base are inserted. When executing with Firefox a single registry is inserted. Script: htmltest.html <html> <script language="JavaScript" src="jstest.js"></script> <form action="jsptest.jsp" method="post" name="prueba" onSubmit="return chequea();"> <input type="submit" value="Send" class="boton"/> </form> </html> jstest.js function chequea() { document.prueba.submit(); ...Show All

  • Audio and Video Development How to turn Subtitles off?

    Hi there, i tried the following to select subtitles and switch them on (or off) switch (g_sub) { case "de_sub": Player.subtitle.visible =true; Player.track.selectSubtitleTrackNumber(1); break; case "fr_sub": Player.subtitle.visible =true; Player.track.selectSubtitleTrackNumber(2); break; default: Player.subtitle.visible = false; break; } The first 2 "case" definitions works well. They turn german or french subtitles on. If "g_sub=='off'" the default definition should turn the visibility off. Right Wrong. the last selected subtitle is shown, although g_sub isn't "de_sub" or "fr_sub". How can I ...Show All

  • SQL Server RDA Pull method not creating tables/inserting data

    I can't see what is going on, this is the situation: I call the Pull method, specify the table to be affected, the query to be used, the connection string to the remote SQL server , the tracking options (On) and the Error table. The pull method executes with no errors however, no table is ever created. I don't know why, here's what I have done so far: I read the SQL BOOKS ONLINE help on preparing RDA, I set up the IIS virtual directory for anonymous access and on the connection string I send in the user name and password for the SQL server , I went into the SQL Server and grated access to the user name to the database that I am going to access and I made the user a db_owner. So, according to SQL BOOKS ONLINE I have everything right however ...Show All

  • Visual Basic Problems with timers and object reference

    Hi everybody, In a form I created a timer. Then from a code file I want to work with this timer, how can I do this, I get an error "Reference to a non-shared member requires an object reference. How can I refere to this timer from outside the form thankyou very much!!! alba On Your Form: Private mTimer as New Timer Public Property mTimer as Timer get return mTimer end get set (value as timer) mtimer = value end set end property In your code: dim frm as new YourForm frm.Timer = ... that what you mean ...Show All

  • Internet Explorer Development IE7, OE6 Printing problems with headers

    Having an intermittent problem printing To: From: CC: Subject: Attachments: headers on emails. Usually happens with larger emails or emails with large attachments or emails that have been replied to or forwarded from other people. Have installed Generic/text printer and sent the email to this printer but sometimes the headers are still missing even printing this way. I have if I open the offending email and highlight just one or two words in the text of the email eg Dear John and then print the email using my HP printer (not as text on Generic printer) - the headers then print and so does the selected words. Don't suggest using Outlook as often we only print the first page of emails as we already have the rest of the email on file especial ...Show All

  • SharePoint Products and Technologies WSS 2.0 Multiple Keywords - no results

    Hi, I’m trying to search for two or more keywords using windows sharepoint services 2.0 which comes together with the team foundation server (tfs) and has a sql 2005 server as backend. As documented it should be possible to use more than one keyword in a search: “Use more search words. You can include up to 255 characters.”  Taken from WSS Help If I have “Expression_A” and “Expression_B” in a word document within a WSS document library I get the correct result if searching for “Expression_A” or “Expression_B” as one single keyword. As soon as I use the combination of both keywords as search expression I get no results. What is the reason for this behaviour What am I doing wrong Thanks, Tom ...Show All

©2008 Software Development Network