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

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

jepptje

Member List

Ather.
Alek Yakovlev
Dotnetjunky
rta_llc
Josh Lindenmuth
Cursor
Surezsu
catweazle
Mondo2435
dbcuser
da_Codez
mstasi
comspy
nagual
murugan g
Yuki Chen
Jim Tzu
Morten Petteroe
Manhattan
joeydj
Only Title

jepptje's Q&A profile

  • Visual Studio Express Editions Classic ASP with VWD: why is JScript default language?

    Hi all, Thankfully, I can use Visual Web Developer to edit Classic ASP scripts. But there's an annoying problem I'd like a solution for!... As long as I have the "@LANGUAGE=VBSCRIPT" directive at the top of a page, it will correctly format VBScript scripts (keywords in blue, comments in green, strings in red, full intellisense for functions etc.). However, I have to use multiple Include files for each full page, which means not all page chunks can have the @LANGUAGE directive at the top. Here's the problem. Without the @LANGUAGE directive, VWD assumes the default scripting language to be JSCRIPT , and formats all script blocks accordingly. How do I change VWD's default scripting language to VBScript This may be wh ...Show All

  • Visual Studio 2008 (Pre-release) Binding TextElement.FontWeightProperty of TextRange to a ToggleButton

    Hi, I am trying to bind the TextElement.FontWeightProperty of a TextRange to a ToggleButton which can used to display and also setting/unsetting the FontWeight of the selected text to FontWeights.Bold. But I am unable to figure out how to do this binding, since the FontWeightProperty is not directly on the TextRange object. Would appreciate any useful suggestions on this. Thanks You can use EditingCommands to do this: <Page xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml" > <StackPanel> <Button Content ="Toggle Bold" Command ="EditingCommands.ToggleBold" ...Show All

  • SharePoint Products and Technologies Incorporating VS workflow into SharePoint Designer workflow

    Hi there, I'm sure I've read somewhere about being able to produce a workflow component in Visual Studio and then use it within a SharePoint Designer workflow. Problem is I can't find where I read it and since I don't know what it's called I'm having problems Googling it - would someone put me out of my misery and either point me to an article or tell me what it's called Thanks in advance! In SharePoint Server 2007 SDK check the whitepaper "Importing Custom Actions into SharePoint Designer" ...Show All

  • Smart Device Development Windows Service In Smart Phone

    Hello Can we develop windows service or simliar activity in windows mobile. Regards chikuu Yes, Windows CE WM is based on supports services. They have to be written in C++, however. Alternatively you could use console application which would run in background doing whatever you want it to do. ...Show All

  • Visual Basic Functions & Methods

    Is there some where I can go in the help or on the internet and get a list of all the dot net methods and functions http://msdn2.microsoft.com/en-us/library/ms229335.aspx ...Show All

  • SQL Server Is there a way to 'peek' the items in a queue?

    ... or some other way to prolong their presence on the queue. The scenario I'm dealing with requires me to receive a batch of messages and fire them off (as a batch) to a legacy Unix application via TCP. What I need to do is keep those messages on the queue (or at least somewhere else in the database) until I know for certain that the legacy app has received them. Comments Remus: >> I'm not sure I understand what you mean by 'events that signal the closing of a conversation'. EndDialog is a message rather than an event -- in other words, if there are already 50 messages in the queue when the sender ends the dialog, the receiver can't really find this out until it's read all the prece ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. request: Directplay tutorial (vb.net)

    Can anyone help me with directplay :D DirectPlay isn't part of XNA. Have you posted in the DirectX forum ...Show All

  • Internet Explorer Development IE 7 opening to Run Once page with error on it.

    I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. This problem took me about 22 hours to finally fix.  :)   Though the user(administrator) I installed IE7 with worked fine first time and every other time after that it was all the other xp users that suffered with this script problem. 1) Uninstall IE7 an ...Show All

  • SQL Server SSIS configuration option

    Hi, I would like to know what is the difference between XML file and Database in SSIS configuration option. Thanks, K Well, one is a file stored in a directory somewhere on a file system. The other is the same, but stored in a table in a SQL Server database. They both do the same thing. I prefer SQL Server based configs. ...Show All

  • SQL Server SOLUTION! - VB.NET 2005 Express and SQL Server 2005 - NOT saving updates to DB - SOLUTION!

    VB.NET 2005 Express and SQL Server 2005 Express - NOT saving updates to DB - SOLUTION! ----------------------------------- The following article is bogus and confusing: How to: Manage Local Data Files - Setting 'Copy to Output Directory' to 'Do not copy' http://msdn2.microsoft.com/en-us/library/ms246989.aspx You must manually copy the database file to the output directory AFTER setting 'Copy to Output Directory' to 'Do not copy'. Do not copy The file is never copied or overwritten by the project system. Because your application creates a dynamic connection string that points to the database file in the output directory, this setting only works for local database files when you manually copy the file ...Show All

  • Visual C# VS2005 Installs, Compiles, Doesn't run simple C# programs

    I've installed VS2005. It installed fine, and if I do a new C# windows project, it will apparently compile it. If I try running that program, it does nothing. I can do the same steps on another machine, and everything works fine. I can copy an executable built on the other machine to this machine, and it runs fine. Here's a partial dump of the output 'WindowsApplication1.vshost.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. The thread 0xd84 has exited with code 0 (0x0). The thread '<No Name>' (0xdb8) has exited with code 0 (0x0). 'WindowsApplication1.vshost.exe' ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. "Comulative" rendering

    Hi, i am using shadow maps in my Engine and the lots of passes that i need to perform when rendering and combining the geometry and the shadow( texture rendered without shadow and other only with shadow ). Now...there is a way...a render state....to render the scene wothout Clear the device and it Multiplies the 2 renderings...like Photoshop... thanks Key_46 Do you mean multiplying the shadow texture to the rendering already present in the back buffer Then Yes: frame buffer alpha blending is done after pixel shader computations with the following per pixel equation : Final Color = ObjectColor * SourceBlendFactor + PixelColor * DestinationBlendFactor. Using the appropriate "SourceBlendFactor& ...Show All

  • Visual Studio 2008 (Pre-release) Any limit on Encryption Key length allowed for export from the US?

    I am trying to secure a web service that can be deployed to customers in US and other countries. If I were to use a long encryption key (e.g. 256 bits) to secure the message exchanged with the web service, can such web service be freely exported from the US If not, what is the maximum encryption key length that can be exported from the US Thank you. Microsoft maintains cryptographic export information on its products at http://www.microsoft.com/exporting/  but there's no listing for .NET 3.0 yet.  I'm investigating when there will be a listing for .NET 3.0; stay tuned. I don't really want to speculate, but my personal bet would be WCF will be approved for mass market export as i ...Show All

  • Visual C++ Inheritance problem

    Please read below and tell me how can i get the correct member "i" and "c" in the Function() I have calsses such as class A { int i; char c; }; class CollectionA { CollectionA( A** ptr) { ptrArrayOfClassAObj ects=ptr; } Function() { for(int count=0;count<N;count++) { ptrArrayOfClassAObj ects[count]->i;/////Does Not yields me the correct i ; the member of its own ptrArrayOfClassAObj ects[count]->c;/////Does Not yields me the correct c ; the member of its own } } A ** ptrArrayOfClassAObj ects;//N Objects of Class A which had been newed. char c; }; class B: public A { B(int in1,char in2){ i=in1; c=in2; ///other members } //has some other members too which may be virtual }; class [from C to Z]: public B {. ...Show All

  • Community Chat My creation: Color based object tracker

    Hey guys, I've created a program which uses a webcam to track things based on color. I'll use this as a vision system for some of my robots! Check it out on my blog: http://ashishrd.blogspot.com/2007/01/real-time-color-based-object-tracking.html Ashish Cool, you already did that. Just need more precision :). This + auto paint gun or BB gun (from Coding 4 Fun) = sentery gun. Weehoo, first target, my nieghbor kids. ...Show All

©2008 Software Development Network