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

Software Development Network >> Santosh A H's Q&A profile

Santosh A H

Member List

GCParris
customization
Joos
Rahul B
Nightmare_BE
Floydus
Manash
GSReddy
Rohi
Alan Robbins
JohnWP
osamaT
VikasAgr
Rik Dodsworth
Zadoras
Robet
edukulla
Venkatroyal
Jon Braganza
Jassim Rahma
Only Title

Santosh A H's Q&A profile

  • Visual Studio Express Editions How can i create a setup file?

    I have using VS.NET 2005 Standard Edition. i have code my project, but i want to create a exe file for these environment (WinXP, Win 2000....). It is because i just copy the project.exe and run it on other workstation that installed .net framework 2.0 now, but i cannot use the crystal report, it is because i haven't install the crystal report component. How can i create the set.exe include all lib that my project used THX In addition to using ClickOnce Deployment, you can create a Setup Project with Visual Studio 2005 Standard Edition. Load your application and then click on : FILE, ADD, ADD:  NEW  PROJECT. From the Add New Project Popup, look on the left side Treeview ...Show All

  • Visual Studio exec task failing in conjuction with echo shell command

    I'm running this exec command inside a msbuild file and not getting the expected results. There is something going on in the conversion of the html code and I've tried various scenarios with no luck. < Exec WorkingDirectory = " $(MSBuildProjectDirectory) " Command = " @echo &#94;&#60; html &#94;&#62;&#94;&#60; body &#94;&#62; Success. Up I'm up!!! &#32; Time on this server: &#94;&#60;&#94; %= now^(^) &#94; % &#94;&#62;&#94;&#60; /body &#94;&#62;&#94;&#60; /html &#94;&#62; > test.txt " /> This outputs the following to test.txt: <html><body>Success. Up I'm up!!! Time on this server: &l ...Show All

  • Visual Basic How to set Application Setting for MDI Child Form?

    I would like to know is there a way to save MDI Child form setting, so that when I reopen the child form again I could get back the same setting. Example of setting that I would like to save are, child form location and its control setting e.g. a textbox.text contents. do u mind to provide some simple code on how to save it to a file, if i have a few Child forms and i would like to remember their location and its controls setting. thanks for your help. ...Show All

  • SQL Server remote connection

    hi guys, i'm trying to access my friend's database from my computer but i cant seem to detect his database though i can detect his server. what i did was i tried adding a connection to his database.i typed in the server name but his database name couldnt be detected. the server name was: WPL\SQLEXPRESS am i missing something here this was the error generated when i tried testing the connection: An error has occurred while establishing a connection to the server.When connection to SQL Server 2005,this failure might be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces,error: 28 - Server doesn't support requested protocol) what does it mean h ...Show All

  • Visual C# What string do I use in System.Diagnostics.Process.Start()?

    I found this method -- System.Diagnostics. Process .Start -- to log into a user's computer and in my case in order to download a file. In a command window you can say something like: net user z:\\IPaddress\SharedFolder password /user:computerName\userName I tried doing this using the System.Diagnostics.Process.Start but I get this error: Error message: System.ComponentModel.Win32Exception: The system cannot find the file specified at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start() at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(String fileName) at FTPProgramWinApp2.Form1.ListFilesOnServer(String locationOfFol ...Show All

  • Visual Basic Vb Jobs 1-10 Rate It

    Hi, I am Wondering How good a programing job is from 1 to 10. Please don't say it doesn't matter how good you are. I mean in general. 10 being a high ranking Doctor 1 Being A Bk Fast food guy Another thing is that I'm 14 and have been programing for a year, I'm Pretty decent and like making games. I know novice OOP techniques I use VB.net 2003 Also Please Tell me About what the average salary is for a programer in a company right now if you know. Thanx bye Look into something a little more in between Computer Science and Business.  Like the other two have said knowing how to program and having the 8x11 voucher (diploma) will open doors, but it's a slippery slope trying to move forward.  Look into ...Show All

  • Windows Forms HtmlDocument branching.

    Hi people, How do you make a copy of the HtmlDocument to another HtmlDocument. You could use the write method and then write the html content but then you loose session and cookie information. You cant clone it with a serializer so any ideas On forehand thx. Thomas Segato Why you want me to post it there The HtmlDocument comes from a browser control wich is a Windows Form. So this forum is the perfect place. ...Show All

  • Internet Explorer Development Explorer bar in IE7 without reboot Windows

    Hi, I have an application that add a Horizontal Explorer Bar in a IE windows. That's work very well in IE6 but when I try to do it in IE7, the user must reboot Windows to have the explorer bar in the menu. I don't understand why The explorer bar just display HTML. Thanks I made the Explorer bar for IE. Otherwise, I can see it in the menu of Windows Explorer but it's not necessary (if someone know how to remove it in Windows Explorer menu please let me know ) I write in the same registry keys than http://msdn.microsoft.com/workshop/browser/ext/tutorials/explorer.asp HKEY_CLASSES_ROOT\CLSID\<GUID> HKEY_CLASSES_ROOT\CLSID\<GUID>\Implemented Categories\{00021494-0000-0000-C00 ...Show All

  • Software Development for Windows Vista deserialization of a List<string> does not work

    I have the property shown below in one of my custom activites. When serializing a workflow into an XML file, then I see the List<string> as a comma separated list of strings in the XML file. However, when I deserialize the workflow, the List<string> is not restored. Can anyone please explain, how custom properties can be restored on deserialization For example, do I need a special constructor pattern in my activity class to support deserialization of my custom properties -------------------- public static DependencyProperty PredicatesProperty = System.Workflow.ComponentModel. DependencyProperty .Register( "Predicates" , typeof ( List < string >), typeof ( PanedActi ...Show All

  • SQL Server Find number of business days in a month

    Hi, I need to find out the number of business days in a month. I have a column 'IsWorkingDay' in my [Time] table. Can anyone please let me know how to find out number of business days in a given month using MDX query. Thanks. The best way to solve this problem is to create a calculated column in DSV which will compute number of working days in a month, and then create attribute related to Month called WorkingDaysCount. Then in MDX it will look like WITH MEMBER Measures.X AS Date.WorkingDaysCount.CurrentMember.MemberValue SELECT X ON 0 , Date.Month.MEMBERS ON 1 From cube ...Show All

  • Visual Studio Team System Triggers and Constraints not imported under their tables?

    Just imported a couple of schemas from some databases. Import worked relatively well, but triggers and constraints are apparently imported by themselves instead of under the table to which they belong. Not sure if this is a bug or not, but wanted to report it because it doesn't seem like they were imported correctly. Thanks. -Pete Schott So this indicates a parsing failure. You should log this as a bug under connect, if you can send the sql script that would crate one of those tables and the associated constraints/triggers it would be very helpful. You can log the bug at: http://connect.microsoft.com/VisualStudio ...Show All

  • Visual C# COM Interop - Best practices?

    Hi everyone :) I am currently developing some small tool which is being called by a Javascript script. So basically I am creating an ActiveX control. This already works but I am missing some sort of best practices approach. Currently I made my main class ComVisible so that all public methods will be exposed to the COM interface. Now I was wondering if there was a possibility to define a interface in the following way: public interface MyInterface { string getSomeString(); string getSomeOtherString(); } public class MyClass:MyInterface { public string getSomeString() { ...} public string getSomeOtherString() { ...} public string getThirdString() { ....} } Currently I set the COMVisible Attribute true for MyClass. Is ther ...Show All

  • Visual C# Reducing memory "bloat" in C# apps?

    Hello all, I've developed some fairly simple C# Windows apps in Visual Studio 2005, and they seem like they're utilizing a lot more memory than they ought to be. To test, I created a new project with just a GridView to my database, ran it, and it took up a whopping 20 megs - it may not seem like much, but try running in a Terminal Server environment with a lot of clients, and it starts to add up! Does anyone know of some tips or tricks, or even third-party apps that reduce memory utilization in VS2005 C# apps Not everything is as it seem in that total you are seing, check out this article Reducing Memory Footprints, Gathering Process Info with MSDNMagProcessMonitor which will show that the s ...Show All

  • Smart Device Development PROBLEM : Connection to emulator device using Microsoft Loopback adapter !

    Hi, I'm trying to get a solution for the following problem : I'm developing an application where I have to send data to an emulator (or an PDA connected to a desktop pc) using XML-RPC. To use this, I need the emulator to have an IP-address. I searched on the internet and found something about the Microsoft Loopback adapter. So installed and configured the adapter using the following configuration : - IP address : 192.168.1.1 - Subnet mask : 255.255.255.0 - Gateway : no - DNS : no This seems to work without any problems, I can see I have 2 connections running (my internet and the one using loopback adapter) To configure VS.NET 2005 I did the following thing : - select TCP-IP Transport (instead of DMA-transport) as the em ...Show All

  • Visual FoxPro Forcing code into a Click Event

    I have added a grid to a form. I'm using the code below to control the contents of the grid. I want to react when the user clicks on Column4.Text1. How can I add an IF...ENDIF set of code to the ThisForm.Grid1.Column4.Text1.Click event WITH ThisForm.Grid1 .RecordSource = 'viols' .Column1.ControlSource = 'viols.oxv' .Column1.Width = 83 .Column1.Header1.Caption = 'Current status' .Column2.ControlSource = 'viols.violation' .Column2.Width = 320 .Column2.Header1.Caption = 'Violation' .Column3.ControlSource = 'viols.allowed' .Column3.Width = 81 .Column3.Header1.Caption = 'Violation Amt' .Column4.ControlSource = 'viols.new_oxv' .Column4.Width = 104 .Column4.Header1.Caption = 'Change status to:' ENDWITH ThisForm.Grid1.Column4.Tex ...Show All

©2008 Software Development Network