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

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

DevboyX

Member List

Shaantu
Nick Anzano
daniele bonini
TWild
nelpasa
xmlfan
divya mittal
Gmukwewa
Sten Palmqvist
Ganesha
jewelfire
Baraks
Teos
AllahIsGook
DineshB
edward123
Octopus384
EricBrown
Rafael1119
AlistairSKing
Only Title

DevboyX's Q&A profile

  • Visual C# ImageMap

    Hi, I would like to know how can I use hotspots to an image that I inserted inside a windows form. Thank you, Allaedin You can draw an image on Windows Form, Put a virtual grid on that creates boxes of the image. Save points (information) of each box in some array. Handle MouseMove event of the form and scan from that array that which box is underlying the mouse, Highlight box around it. I hope it'll help! Best Regards, ...Show All

  • Visual Studio Team System creating project error

    hi anybody can help i have this error , any helpful information 006-11-05 17:57:10Z | Module: Work Item Tracking | Thread: 5 | Uploading work item type from file 'C:\Documents and Settings\MNoor\Local Settings\Temp\TPW_tmp48.tmp\WorkItem Tracking\TypeDefinitions\Task.xml'... 2006-11-05 17:57:12Z | Module: Work Item Tracking | Thread: 5 | Uploaded WorkItemType definition from C:\Documents and Settings\MNoor\Local Settings\Temp\TPW_tmp48.tmp\WorkItem Tracking\TypeDefinitions\Task.xml 2006-11-05 17:57:12Z | Module: Work Item Tracking | Thread: 5 | Uploading work item type from file 'C:\Documents and Settings\MNoor\Local Settings\Temp\TPW_tmp48.tmp\WorkItem Tracking\TypeDefinitions\Qos.xml'... 2006-11-05 17:57:15Z | Module: Work Item Tracking ...Show All

  • .NET Development the reference of the sleep function or the sample program for the sleep function?

    In javascript, I want to the function sleep for a while, can you tell me the reference of the sleep function or the sample program for the sleep function I appreciate your help. setTimeout - this function can be used to sleep for an amount of time specified by the milliseconds parameter and then call the function specified in the function parameter. setInterval - this function can be used to call the specified function every time the specified interval elapses. ...Show All

  • Software Development for Windows Vista Deploying Workflow applications

    Greetings!! I have created a sequential workflow console application which prints HelloWorld. To the same project I added a setup project and created a msi. Now when I try and run the msi to deploy the console application, even though the msi says that it has completed installtion, i can see no deployed files/folders. Can anyone suggest any good sites where I can view information about deploying workflow applications. I know how to deploy workflow as a webservice. However this is a console app. Any comments/suggestions will be helpful. Thanks, Lalit. Make sure you add the output of your console application to the installer's files to be deployed. You may also need to add the content if y ...Show All

  • Visual C# is there any source/version controller .....?

    is there any source/version controller which can work with any language builder tool like vs 2005, jbuilder or other java language tool and php tools....... means with every language tool...... i want such source controller which can be manageable from that language tool builder as VSS is for VS i hope u got my point if no then u can ask ......... try SVN. As my knowledge, it can be integerated with the IDE like Eclipse, as well as you can directly work through file system (means you can go for any language), using tool called tortoise. ...Show All

  • Windows Forms Looping through combo box display members

    Dear All, My problem is related to combo box. I have managed to bind values from a select statement from a database to combo box successfully with cbBox1.DisplayMember = "ID" ; cbBox1.ValueMember = "valueText" ; The problem comes when I run for ( int j = 0; j < cbBox1.Items.Count ; j++) { MessageBox .Show (cbBox1.DisplayMember[j]); } When I run through the loop I dont get the exact value of the DisplayMemberbut just one character from the DisplayMember. How can i show the whole text rather than then just a particular character. Thanks. Hi, Thanks for the answer. How about if the bound is not a datatable,dataset or dataview can we still ...Show All

  • Visual Studio Express Editions Capital

    How can i made my program underdstand that the next char must be a capital if the last char was a . . you could use a keypress event for your textbox and check what the text is already in the textbox and if the last char is a . then if the current key being pressed is a capital letter then accept it otherwise leave it. Small example:   ..KeyPress event if Me.theTextBox.Length > 0 then    if Me.theTextBox.Text(Me.theTextBox.Text.Length) = "." then       if e.KeyChar.ToString().Equals(e.KeyChar.ToString().ToUpper()) = false then          e.Handled = true       end if    end i ...Show All

  • Windows Forms Toolstrip and treeview

    hi, I want to know whether a toolstrip control will support a treeview control. I have a treeview generated at runtime. Hi,agdurga If you mean to add a TreeView into the toolstrip, make your own toolstripitem inherited from ToolStripControlHost: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Collections;   namespace Samples {     public partial class General : Form     {         public General()         { ...Show All

  • Visual Basic Function in VB

    can a function return more than one value in VB also. like form load() x=sample() end sub public function sample()as integer dim i as integer dim str as string i=1 str="VB" return i 'how to return i and str both end function A function cannot return more than one value in VB However, there are ways around this. Perhaps you could return an array with multiple values therein, or pass an argument byref or maybe return a type that exposes the results. In your example .. maybe this is all that is needed ... function sample(byref s as string) as integer dim i as integer = 1 s = "VB" return i Richard ...Show All

  • SQL Server Saving a report built in Report Builder

    I have built a report using Report Builder. When I try to save it I get and error, The name cannot contain any of the following characters: ; @&=+$,\*<>|", and cannot consist exclusively of dots or spaces. The name I am saving is cta. Any ideas I do not think so. Did you install anything special on the web server, like front page server extenstions or disable the firewall or open a port in the firewall. Did you just do a vanillla install of reporting services or did you add pieces on afterwards (don't know what these wou ld be) ...Show All

  • Visual Studio Team System Tests Not Runnable, Multiple Tests with ID Found

    Hello, I've started using Team System for unit testing and have been very pleased with it for a while but recently I've run into a strange error on some of my tests. When I try to run the unit test project all my tests are marked with the message, "Not Runnable", and I get an error message saying, "Multiple tests with ID <guid> found". Other test projects in the same solution are fine and run without incident. If I rename the class containing and rebuild the solution the tests run just fine but if I shut down Visual Studio and relaunch it the error is back. Am I doing something wrong Thanks. I tried adding a new testrunconfig but it had no effect. The solution is pretty big containing around 20 projects structured in solu ...Show All

  • Software Development for Windows Vista Marked application(embedded manifest) doesn't elevate when UAC is turned off?

    Hi I'm testing my app on vista Business K. I've embedded manifest file and running it with shellexecute. It correctly gets elevated when UAC is enabled. However, when UAC is turned off, it won't get elevated as it should. Most surprisingly, one of two identical copies of the application has the windows security logo mark on the icon and one does not. I know the two files are identical for sure because their sha-1 checksums are identical and all other properties are the same(size and etc) What the heck is going on here Is UAC still buggy Thanks in advance. I don't see any suprises on your first part of your first post. If you turn off UAC, and you're logged in as a member of the local administra ...Show All

  • Visual C# Method doesn't recognize variables

    I get all these errors when trying to reference my variables. 1) For example, with the xl variable, I had to end up specifying it as parameter in my AddProduct function or else I'd get errors saying it didn't know what xl was. xl is just a container for excel records in a spreadsheet. You loop through it and pull data from whatever column or row and do whatever. 2) Second, I get errors about the fact that it doesn't know what 'host' is. These are just 2 examples of the sort of problems I've been having. I know it's a lot of code but here it is. Please when posting back with answers, use fake variable names so that I can keep this confidential as possible in regards to my code here: http: / / www. webfound. net/ forum_ posts/ addproduct ...Show All

  • Visual Studio 2008 (Pre-release) Creating a Derived Type in the Designer

    I am attempting to re-create my previous VideoGames database using the designer. I want to see if I can do everything I need without tweaking the underlying XML once. So far its working with NavigationProperties. However, either its been too long since I've used this stuff, or the designer is limited. I am trying to create a derived type called WiiGames that derives from VideoGames, that uses a condition where the VideoGame.Type.ID is 1 (Wii). Anyone have a walkthrough on how to do this in the designer and/or how to start using the designer and finish using XML Hi Kevin, Can you attach your CSDL, MSL and SSDL files I can then look at the example more carefully. Thanks. ...Show All

  • SQL Server need help with taking data from a card reader and storing it into SQL Server 2005

    I'm using a Hemisphere West MSR-152 card reader. I need to take data from the reader and store it into SQL Server 2005 Express. Can anyone give ideas on how to do this (sample code recommendations). I'm using visual studio 2005 express and I code with VB.NET. Hi, you wil either have to use the nedors API for accessing the reader or code the adressing of the reader on your own. After getting the data it should be quite easy for you sending the data to SQL Server. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network