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

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

Sanchi

Member List

PrashanthSpark
Ryan Darby
MadJax
John Blackman
mannequin011
mrplatypus
Brian Reisman MSFT
JBailo
itsAnil
BigTimeHacker
dgavarin
Ping Wang
Mark Mrachek
Sandra Geisler
DynesSGR
Romesh Chander
Peter Artelt
Josh Holmes
Carl Brochu
aaguilarch85
Only Title

Sanchi's Q&A profile

  • Windows Forms Control Resizing In Deployed Executable !

    Hi, I have a wierd problem. I've got a Windows Form with heaps of controls which are within a SplitContainer, which is Anchored in all directions. When i run the application on my development machine (VS2005), either through the IDE or from the deployed site, the SplitContainer resizes as the Form resizes on any resolution, but when the application is run by subscribers on their machine which doesn't contain VS2005, the splitContainer fails to resize as the form resizes therefore, information appears chopped out ! Would anyone have any suggestions have you run it both via clickonce and local deploym ...Show All

  • Windows Forms Visual Inheritance - Deriving From Open Constructed Form

    Hello Everyone: I have an open constructed form that I want to use as a base form. It looks something like: public partial class BusinessFormBase <TBusinessObject> : Form{...} So far so good but when I try to derive from this form in order to create a closed constructed form, everything compiles fine, but I get the following when opening the designer for this form: The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: Form2 --- The base class 'MyAssembly.BusinessFormBase' could not be loaded. Ensure ...Show All

  • SQL Server The proxy auto-configuration script could not be downloaded

    Hi, I am trying to create a Merge Replication through Web synchronization , i used the publish server as distributor and i installed IIS on the same server. i tried the following URL https://mysite/replisapi.dll  from publish server and it was ok. i got the following message: SQL Server WebSync ISAPI. from the subscriber server i checked the url https://mysite/replisapi.dll  too and it was ok too and i got the following message: SQL Server WebSync ISAPI. I created the publisher and publication and everything is fine , i checked the option to allow web synchronization. From the subscriber side, i created all settings, i did a ...Show All

  • Visual J# J# Books & Questions

    I'm a new developer and am planning to write an application for church office administration.  It would keep track of facility usage, payroll, members, attendees, donations and general accounting.  I've looked into a couple different languages and have narrowed it down to J# or Omnis Studio (Omnis.net), which appears to be underdeveloped. However, I'm having trouble finding resources (in print or electronic form) for J# and learning it looks fairly tough.  Should I buy a book on Java to learn J#   Can I build the type of software that I'm trying to in VJ# 2005 Express B2   Thanks in advance for the timely responses. ...Show All

  • .NET Development Problems reading array in struct

    Hi, I'm trying to marshal the DS_SELECTION_LIST struct ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/ad/ad/ds_selection_list.asp ) to C#. It works, but only the first element is retrieved. I believe this is because the marshaler can not determine the array size. However, the field cItems in the struct determines the array size. But I can not use the SizeParamIndex with UnmanagedType.ByValArray. So I tried the UnmanagedType.LPArray but then I receive the exception: System.TypeLoadException: Cannot marshal field 'aDsSelection' of type 'ADHelper.DS_SELECTION_LIST': Invalid managed/unmanaged type combination (Arrays field ...Show All

  • Architecture good C# 2.0 architecture book for Window application

    Hello, can anybody recommand a good C# 2.0 architecture book for Window application I moved from VB6 to C#. Need a intrduction book for clear writing, not high level with samples. Some samples on N-tier design is better. Thanks. the patterns and practices books are a good start. http://msdn.microsoft.com/practices/ ...Show All

  • Windows Forms populating grid on the fly

    hi friends am trying to populate data grid on the fly in button's click event. my sample code is SqlCommand myCommand = new SqlCommand ( "select * from task" ); myCommand.Connection = conn; myCommand.ExecuteNonQuery(); grdTask.DataSource = myCommand; grdTask.Refresh(); this is not loading any data or returning any error any ideas . am using VS 2005 and C# Thanks 1. You can't bind directly to a SqlCommand. You need to load the data into memory first (DataSet). 2. The ExecuteNonQuery method is to run Update, Insert, and Delete queries, that don't return any result records. For Select statements, you need some sort of Re ...Show All

  • Visual C++ Inheriting from a generic class

    I may be being stupid and doing something completely wrong but I'm trying to create a class that inherits from a generic list. I only want to store one class type in my class but I can't work out how to do it. I've tried using namespace System::Collections::Generic; #include "MyItem.h" public ref class MyCollection : List <MyItem^> { .... } Is this possible or am I doing something wrong with the syntax. Sorry if this is an obvious question but I've only previously used VC++6 and I've never used .net before. Thanks Mog Thanks...it seems that the data is being added correctly to the ...Show All

  • Windows Live Developer Forums How can i msn messenger contact list in php

    How can i msn messenger contact list in php Please refer to How to get Messenger Technical Support. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=368260&SiteID=1 ...Show All

  • Visual Basic Change DB connection

    I'm developing a windows application based on an Access database. I used the wizard to create the table adapters, relations and so on and all works fine. But using the wizard the connection to the database is hide, the system does the connection by itself. It supposes that the db is stored always in the same location at the same path. I need to use the application changing as needed the database (same structure different data obviously). My goal is to have a menu item like "Change db" where I can browse the file system and choose the db. Can I change the connection of the dataset at runtime How can I do Dado ...Show All

  • Windows Forms MDI Problems

    Am getting the following problems with MDI forms: 1. Child forms set to maximised at design time do not appear maximised when shown. 2. Icons of maximised child forms do not show in the control box menu until the MDI form is resized. 3. I can't get the toolbar buttons of child forms to merge with those of the MDI form. I've set the AllowMerge property of the MDI form toolstrip to True, and MergeAction of the child form toolstrip buttons to Append and Insert, but they just don't appear. EDIT - OK, I can fix this with the ToolStripManager. 4. I want the toolstrip to be draggable to any side of the MDI form. I'd use a single toolstrip container ...Show All

  • Windows Forms mageUI.exe fails to sign manifest after adding files - HELP!!!

    I am using VS.NET 2005 beta 2 ClickOnce deployment and need to add some data files to my manifest.  So far, I have been unsuccessful in using mageUI.exe to add the files due to a signing error.  This signing error stands in the way of a production point-of-sale deployment scheduled for next week .  We would greatly appreciate any help you might give us.  Here's the steps I took and the errors/warnings that I saw along the way: 1.  Published the app successfully to another server, but got the following warning: Warning 3 SignTool reported an error 'Failed to sign publish\Isola ...Show All

  • Visual Studio Express Editions Getting RAW source

    Hi guys, I've been using some code that I got off of a website recently, and it takes the source from a website and takes out all of the HTML tags and such. However, I don't want the HTML taken out! I've tried deleting the bottom half of the code and such, but to no avail. I'm somewhat new to VB, and any help is appreciated! Here's the code: Me.TextBox1.Multiline = True Me.TextBox1.ScrollBars = ScrollBars.Both 'above only for showing the sample Dim Doc As mshtml.IHTMLDocument2 Doc = New mshtml.HTMLDocumentClass Dim wbReq As Net.HttpWebRequest = _ DirectCast(Net.WebRequest.Create("http://www.allwords.com/query. ...Show All

  • Windows Forms DataBinding vs Event Handler

    I have a Checkbox when checked I want to enable a Panel. The current Code that I have: pnlSeries.DataBindings.Add("Enabled", chkSeries, "Checked"); This works fine. My question, is it better to use DataBinding or make the change in an Event Handler. Thanks Thanks for the comments.  I do have navigation controls and it does work fine with every  ...Show All

  • SQL Server SQL Server Mobile Bug?

    We've migrated a .NET CF 1.0 App with SQL CE 2.0 to .NET CF 2.0 and SQL Server Mobile and we were wondering about the new behavior. A sample to reproduce: create table persons ( id int identity primary key,     firstname nvarchar(100),     lastname nvarchar(100)); create table logins ( id int identity primary key,     personid int not null,     password nvarchar(100)); insert into persons(firstname, lastname) values ('Scott', 'Tiger'); insert into persons(firstname, lastname) values ('Bill', 'Gates'); insert into persons(firstname, lastname) values ('Test', 'Man'); insert into l ...Show All

©2008 Software Development Network