Software Development Network Logo
  • Visual FoxPro
  • Visual Studio
  • Visual J#
  • Visual C++
  • Windows Forms
  • .NET Development
  • VS Team System
  • Game Technologies
  • SQL Server
  • Architecture
  • VS Express Editions
  • Windows Live
  • Smart Device
  • Windows Vista
  • Visual Basic

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

Karun123

Member List

Caloroin
Rich Denis
Sameer S
Drewid
BB3
Steve at Pixelda
Aparrel
PatLaplante12345
esun
priya 22
gaorellana
n0n
WWG
Ronald Cagape
BigBoy
giovanni asp.net
digimonk
JarodB172890
javajava
chad_
Only Title

Karun123's Q&A profile

  • Visual Studio Team System Error at 99.9% of installation - TF30076

    hi everybody again... well..this is the history... im installing a TFS Single Server, sql 2005 ok, WSS 2.0 SP 2 ok (farm server), IIS 6.0 OK, win 2003 SP1 ok, everything ok i followed the installation guide everything was ok ....until at 99.9% of the installation (Team Foundation Server Setup)an error window shows : "Error 28100.Error loading Event web service"...so i reviewed the forum and nothing works...later i reviewed the log file and here it is: ** TECHNET is the computer name 12/02/05 20:47:30 DDSet_Status: Commandline: "D:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\TF Setup\BisSubscribe.exe" /setup /install /e ...Show All

  • Visual Studio Express Editions My VB

    Okay i've gone and bought Vb.net 2003 form Pc worlds right. And i bought a book to go with it. in my book the buttons and loading bars and stuff are all in the xp style. However whrn i do a button it looks 98 ish. what i want to know is is there some kind of setting i can get to make my programs looking the xp style cause at the moment, they look 98. I believe you will need what's called a 'manifest' file: however, VB 2005 Express can take care of all of that for you with one of the project properties. ...Show All

  • Visual Studio Express Editions Value Conversion Error

    Hi Whenever I retrieve a piece of information from a custom query, and then trying to add that information to a new row, I always receive a "Value of type Integer cannot be converted to 'System.Guid'" error. Does anyone know what could be the root of the problem Dim currentHighID As Integer = Me .Tbl_OrderDetailTableAdapter.GetMaxID newRow.ID = currentHighID+1 <<line with error Hmm I just double checked the Database and it seems that the field (newRow.ID) is the primary key of type int. So unless the compiler converts any primary key to Guid, I honestly don't think it is typ ...Show All

  • .NET Development creating texture Visual Studio .Net not working anymore!?

    Few days ago, I reinstalled Windows XP and installed MS VS .Net but in my C# programs texture creating no longer works and reports an undefined error! No metter if I load my code or sample code that goes with my Tom Miller's DirectX 9 book, it does not work! In my previous instalation of VS .Net it all worked perfectly and I did not configure anything, so what could it be now Please help! Then either you did install the wrong version (I am not sure if the latest DXRT installs previous MDX helpers) or the setup did not install the MDX assemblies at all. I don't know how to solve the first case (I assume ...Show All

  • Windows Forms UserControl problem...

    This is picture of what I want to create inside the UserControl. Ive create this outside the UserControl and want to put inside the UserControl. http://img186.imageshack.us/img186/8657/navbar4ww.jpg Becouse this PictureBoxes is in array, I have to insert items for each Button (PictureBox). I can do with properties like: public Image[] Items {       get, set stuff..... } So when I click on Items property it opens window for adding Items, but when I click on add it gets an error. How can I add an items like we normaly do for, exsample, ListView. For each items, it should be images and text to set. Any releated link w ...Show All

  • Windows Forms Cntl - A or Cntl-F in a multiline text box

    Why can't I use either in a multiline text box.  Cntl-A is most important for me, rather than having to click at the top and scroll down the whole text. dennist685 Hi, I just sent you a mail containing the project that I tinkered with. Try tweaking it and to find out what part of your code is missing... BTW, got a problem on sending a rar file to gmail. So I removed the extension. Just rename the file to .rar upon downloading.   cheers, Paul June A. Domag ...Show All

  • .NET Development Win32_StartupCommand lists only the First alphabetical entry of Startup Folders.

      Preview Message Win32_StartupCommand lists only the First alphabetical entry of Startup Folders. Hi All I am trying to list all the Startup Commands of a computer using Win32_StartupCommand class. The code is: strComputer = "." Set objWMIService = GetObject("winmgmts:" _     & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colStartupCommands = objWMIService.ExecQuery _     ("SELECT * FROM Win32_StartupCommand") dim strOut For Each objStartupCommand in colStartupCommands     strOut = strOut &a ...Show All

  • SQL Server Take Id-s From returned rows, and make a new SELECT

    Hello, I have a question on sql stored procedures. I have such a procedure, which returnes me rows with ID-s. Then in my asp.net page I make from that Id-s a string like SELECT * FROM [eai.Documents] WHERE CategoryId=11 OR CategoryId=16 OR CategoryId=18. My question is: Can I do the same in my stored procedure (without sending it to page) Here is it: Basically you would just put your ASP.NET side select statement ( SELECT * FROM [eai.Documents] WHERE CategoryId=11 OR CategoryId=16 OR CategoryId=18 ) into the stored procedure. Then change the WHERE clause to something like this (i left out the conditions): WHERE CategoryId In (Se ...Show All

  • Windows Forms Powerpoint in a Visual Basic.Net Form

    How can i "run" a powerpoint file in a visual basic.net form. The application should not run "fullscreen", the ptt is just a part of the form. Looking forward for some help. Daniel Ali Aman / Kuala Lumpur They do not currently have side by side working, also if you use a feature of 2.0 then run it on a system with  ...Show All

  • .NET Development Creating of keys in the Registry.LocalMachine

    I need to read some keys from registry, but, if keys are abscent, application must create these keys with default values. RegistryKey regKey; ... //then I tried to make such: regKey = Registry .LocalMachine.CreateSubKey(res); //but regKey == null. In MSDN i found that: //============================================================== IOException The nesting level exceeds 510. -or- A system error occurred, such as deletion of the key, or an attempt to create a key in the LocalMachine root. //================================================================ I tried to use OpenSubKey( ...Show All

  • Visual C++ Question Regarding Automation

    Hi, I'm dealing with some automation for my code, and there is some syntax that is there that confuses me I have code like this: BEGIN_DISPATCH_MAP( MyDocument, C CmdTarget ) //{{AFX_DISPATCH_MAP(MyDocument) DISP_FUNCTION(MyDocument, "SetVisible", SetVisible, VT_EMPTY, VTS_BOOL) //}}AFX_DISPATCH_MAP DISP_FUNCTION(MyDocument, "SetInvisible", SetInvisible, VT_EMPTY, VTS_BOOL) END_DISPATCH_MAP() The part i dont understand is why the AFX_DISPATH_MAP line is commented out   And why all code between the AFX_DISPATH_MAP lines is a different colour (grayed out in VS2003).  This functions must still work as they do in fact wor ...Show All

  • Smart Device Development Semaphore for inter process syncronization? Does one exist?

    I need to syncronize two processes, and I need a semaphore. Does one of these exist in .NET CF I found a named mutex in OpenNetCF, however, not exactly what I was looking for. Appreciate any help, Thanks! If you are using .NET CF 2005, have you already checked out the built in System.Threading.Mutex Class that is meant for inter-process synchronization ...Show All

  • SQL Server Database Mail Configuration?? Very Urgent

    Hi!!!! I'm a hobbyist Developer.... I'm would like to know how to send mails from Database Mail option in SQL Server 2005. I wil be glad if i can get a step-by-step procedure or any KB.... Moreover what i did was, i tried to setup the database and i got the error message when i tried to send DB mails.... "An attempt was made to send an email when no email session has been established" wil be thankful if i get help ASAP. Thanks, Jeffrey I got hung up on this one too, and what I found was when I set up the mail account to send mail in SQL Server I had used the wrong name for the Account Name and Di ...Show All

  • Visual Studio Express Editions Sample Program for Serial Port Communication

    A small sample program for serial Port Communication including the Visual Basic .Net source code is now available in the knowledgebase on our homepage. http://www.innovatic.dk/knowledg/SerialCOM/SerialCOM.htm If you have any comment or suggestions please send me an e-mail. You will find the e-mail address on the frontpage. Good luck with serial port programming. Innovatic Carsten Kanstrup More files has been added to the source files, so that it is now possible to open the entire project. Just download MaxiCOM.zip, unzip it and doubleclick on MaxiCOM.vbproj. ...Show All

  • Visual Studio Team System VSTS Dev edition and TFS - IDE Locks on Add Item - BEEPS

    When connected to TFS everytime I add an item to the project the IDE locks up in what appears to be a modal error of sorts. Once the item is added to the project I cannot do anything. Anywhere I click in the IDE I just get beeps. It is as though there is a dialog box open but I cannot see it. I have to kill the devenv process... When I reopen the project I have to show all files and include the file that I just added. I can provide a short video if you need an example. Andrew, I'm going to bump this question over to the TFS forum where I think it will be best answered. Thanks, Ian ...Show All

©2008 Software Development Network