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

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

Kaos

Member List

smartpi
J A Y
Mark_Davies
douner001
thiers
Vijay_kar
dotNET Dev
Mr_White
Dave Holmes
NeTBaPb
Urip
Igor P
nastynate
satya999
QQN
Jakein2006
RFDID
Samuel Allan
DaPosh
fasttrack
Only Title

Kaos's Q&A profile

  • Visual Studio Express Editions about library In C++

    Hi evryone... while I using VC.NET 2005 To programing project I want to insert(add) some library to my project. what I doing to do that where can I find [component and controls] in VC.NET comment:( I founded thy library but I can add it ) and thanx early.. Take a look at http://msdn2.microsoft.com/en-us/library/ba1z7822.aspx that describes how to link other libraries to your project. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Internet Explorer Development Trying to use the GoTo method of the Word.Application ActiveX object uin JavaScript

    Hi There I am trying to use the Goto method of the Word ActiveX object. I am trying to open a document and go to a named bookmark. If I use this code in VB it works, so I'm sure the approach is possible, I just can't get JavaScript to work with it. Here is the code I am using, the error I get from IE is Object Expected: Hope someone can help! Any help would be much appreciated function PageLoad() { var WordApp = new ActiveXObject( 'Word.Application' ); WordApp.Visible = true ; var documentlocation = crmForm.all.new_documentlocation.DataValue; var wd = WordApp.Documents.Open(documentlocation); wd.Select(); //var What = ActiveXObject('Word.WdGoToItem.wdGoToBookmark'); //var Name = Create ...Show All

  • SQL Server how to get the top value?

    hi, this my prediction query. select Flattened ( select $time as Date, [Perf] as Perf from PredictTimeSeries ([Perf],100) where $Time <'1/1/2007' ) as A from [Stud_Model] WHERE [StudID]=8 Its giving me result where the date is less than 1/1/2007. i need only one result, where the date should be nearer to 1/1/2007. I am not able to use Top 1 inside like select Flattened ( select top 1 $time as Date, [Perf] as Perf from PredictTimeSeries ([Perf],100) where $Time <'1/1/2007' ) as A from [Stud_Model] WHERE [StudID]=8 can anyone help. Thanks, Karthik I haven't tried a query like that, but you can't use Top in that context. You may be able to use the TopCount function, I ...Show All

  • Visual Studio Express Editions Space bar

    These codes allow only alpha to be entered in textboxes for Names but does not also allow the use of Space Bar. How will i make it accept space bar input so i could place spaces in the Names Im not familiar with keycodes and keychar, I was familiar with keyascii in VB6 could you give me a reference like Enter = Keyascii 13 in VB.NET. Private Sub NAMETextbox_KeyPress(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.KeyPressEventArgs) Handles FirstNAMETextbox.KeyPress, LastNAMETextbox.KeyPress, MiddleNAMETextbox.KeyPress 'Allow only alpha to be entered If Not (Char.IsLetter(eventArgs.KeyChar) Or Char.IsControl(eventArgs.KeyChar)) Then eventArgs.Handled = True If KeyAscii = 13 Then System.Win ...Show All

  • Visual Studio Team System does microsoft team foundation server require visual studio team system?

    we currently have visual studio professional edition (not team edition) and vss. if we were to purchase microsoft team foundation server, do we need to upgrade our studio version to get full benefit what are the benefit differences between visual studio professional vs. team when using the foundation server secondly, can someone point me towards VSS to VSTS migration information thanks, jason meketa progarmmer/analyst webtrends Hi, If you plan to use Team Build you will require Visual Studio Team System Developer or Tester Edition of the software be installed on the machine you select to be the build server. VSS => TFS try this MSDN article Wes ...Show All

  • Visual C# Strange null reference problem within enum?

    Hi All, We've been having a strange problem. Recently we have seen null pointer exception coming out from our code. The exception trace is dead simple: Message: The run has errored with description: Object reference not set to an instance of an object. Object reference not set to an instance of an object. ------------------------- User: Source: mscorlib Server stack trace: at System.Collections.Hashtable.get_Item(Object key) at WGP.Adapter.IntToPrataEnum(String prataCode, String val) at WGP.Adapter.Curve.BuildCurves(Double[] date, Int32[] instrument, String[] currencies) ... Anyway what really strange is that the code in IntToPrataEnum method is dead simple and straight forward. As far as I can see, I couldn't find a single ...Show All

  • Visual Studio Team System Question about Add Related Work Item from Team Query

    I have a question about adding related work items from a team query. I should start off by saying that I'm using the CMMI process templates, with the addition of a custom Approval work item type. When I run a team query from VS/Team Explorer, lets say the "All Tasks" query, I'd like to add related tasks to some of the results. So I right click the task from the Query Results. However, sometimes I have the "Add Related Work Item" option, but some times I don't. What am I missing Do you only get the option if the base work item is in a specific state If my modifications to the process templates could cause this, what areas of the templates should I be looking at to fix it I've tried the usual standby fixes like r ...Show All

  • Internet Explorer Development running an hta from another hta

    Hi, I have two HTAs. One that is run automatically and the other that should be opened by clicking a link in the first HTA. When I put it a regular link (<a href...) it notifies on a security issue. To workaround this issue I did the following: 1. Created a Wshell script that will run the hta. Sub OpenHTA(link) set wshell=createobject("Wscript.shell") wshell.run("mshta.exe " & link) End Sub 2. In the link i created an Onclick event handler that calls the subroutine I created above. Unforyunately, it creates an mshta.exe process but the hta itself does not display. Any idea how to resolve this By the way, I did the same thing to run a .chm file and it works fine. ...Show All

  • Internet Explorer Development Can we show navigation buttons but hide address?

    I'm moving this from a question appended to another message. We're in the process of testing and migrating our internal web applications from IE6 to IE7. When we open these windows, we hide the address bar. Unfortunately, that now means we also hide the navigation buttons, which are a required part of the user interface. Is there any way to hide the address (location) portion without losing the navigation buttons TIA! Mary Mary, By default, IE7 prevents sites from opening windows that hide the address bar. This is a security mitigation designed to help prevent address spoofing, phishing, and other similar forms of hanky-panky. You can change this behavior for a given zone through the Security ...Show All

  • Microsoft ISV Community Center Forums Auto Indentation for VBA

    Hello, I am still new to VBA IDE. I am wondering if there is add-in or tools to make VBA do auto indentation like Eclipse editor for Java. Any help are very appreciated. Thanks in advance. Go to Tools|Options. On the Editor Tab there is a "AutoIndent" checkbox. I'm sure you can handle it from there. (unless you are looking for a tool to re-structure the indents in poorly indented code.) rusty ...Show All

  • Visual Studio 2008 (Pre-release) Windows CE 5.0 Device Deployment

    I keep getting the 'Connection Failed. ActiveSync is not installed.' error attempting to connect the VPC image's Orcas installation to my device running Windows CE 5.0. Per the instructions on this blog entry ( http://blogs.msdn.com/vsdteam/archive/2007/01/18/connectivity-issues-after-installing-sp1.aspx ) I transferred the entire contents of the C:\Program Files\Common Files\Microsoft Shared\CoreCon\1.0\Target\wce400\x86 folder over the versions we are presently using successfully with Visual Studio 2005 SP1... however, I still get the same error. I did not see any other version of the file in the VPC image, so I'm out of ideas. I hope this is the right place to ask this, as I didn't see any device-specific forum. The issue is a bit ...Show All

  • Windows Forms Windows XP

    2 questions. How many times can you download your Windows XP disk w/the serial number before It's no good. And. When I log onto my computer, I can log off with no problem, but when my kid logs on using his own password, he can't log off for some reason. He has to do a restart. As far as I know, Windows Must be activated each time it is installed. If your kids can't log off, try going to DOS and type in "logoff" and if that does not work, try CTRL+ALT+DEL and click on the users tab, select the account name and click the log off button. Beyond that I don't know how to help you. The following is a Windows XP help article. THIS IS PROPERTY OF MICROSOFT. You cannot log off, resta ...Show All

  • Smart Device Development RTP using the JRTP Library

    Hello all , I am trying to use the jrtp 3.6.0 library to send rtp packets across a network .The library has object oriented classes which give me the option of building rtp packets.When building these packets, I do not know how to include the payload data . Could anyone tell me how this payload data is included in the rtp packets when using this library. ...Show All

  • Windows Forms button stack control

    On my button tool strip I want a multi-use buton. They used in VS2005, and MS Office quite a bit. Basically it looks like and operates like a ToolStripDropDownButton, but it remembers which item you selecteed from the drop down list, and makes that the default action for when you click the button (not the arrow). Not a great description... the best example is the add new items button in VS2003/5. What I tried. I have a ToolStripDropDownButton with ToolStripMenuItem items beneath it. When you click one of the ToolStripMenuItem, I manually change the Image and Tag attribute of the ToolStripDropDownButton. Then for the ToolStripDropDownButton.Click event, I check the value of Tag to decide what to do. This works but... every time I click theT ...Show All

  • Visual Basic how to do this???

    A. Application: Control Structures Procedures Arrays B. Program Specification: Project Name: countletters Project Type: Windows Application C. Requirement Description: Write a windows application that accepts a string as input and determines the number of occurences of each character in the string. Implement this using a form with a TextBox, a Button, and a ListBox. Please refer to the graphic file(s) associated with this Machine Problem. Use the TextBox as the data entry for the string, the Button for invoking the count process, and the ListBox for the output. Assume that the user may enter any number of printable character available in the ASCII table. Ignore the spaces and the character case if alphabetic(i.e. 'A' an ...Show All

©2008 Software Development Network