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

Software Development Network >> Luis Esteban Valencia MCP Web's Q&A profile

Luis Esteban Valencia MCP Web

Member List

Edward1
robben07160
Dan Cleveland
NB76
cbeasle1
sabo
voevoda
JohanNL
Robot18F
Uturn
Stéphane Beauchemin
VeryNoisy
Zhou Yong
Bill Reiss
Paul Tew
Sparks260
pipope
svxtc
Markus Kropik
dh0well
Only Title

Luis Esteban Valencia MCP Web's Q&A profile

  • Windows Forms IDE will not obey they settings for form height and width

    All-- Please help. The VS.NET 2003 IDE will not obey they settings for form height and width. Here is the scenario. I decide that I want my forms to have (Size=800,600) all the time, disallowing resizing. I have myBaseForm from which myChildForm1 inherits and myChildForm2 inherits. For all forms, I set (MaximumSize=800,600) and (MinimumSize=800,600) and (Size=800,600) and (Locked=True) and (FormBorderStyle=FixedSingle). I do >Window, >Close All Documents. I do >Build, >Rebuild Solution. I open myBaseForm and notice that (Size=800,620). OK, I think to myself, the IDE must have some rule applied and needs some kind of specific proportionality or ratio or granularity when setting Size. Fine, I wi ...Show All

  • Windows Forms drag and drop Question

    I am trying to create a flow chart type interface for a user (sort of like visio) use drags a item on to a work place drags another ..... the put arrows between them any idea. I am using VB.net 2005 Ok i have a list of operations in the form of images ie start.gif, op1.gif, op2.gif, finish.gif these will be on the left side of the screen. I want to drag the image to a "work surface" then be able to "Connect" them with a arrow. then in a perifc world save the "work surface" as an image ...Show All

  • Visual C++ How to launch an App in a ''separate context'' programatically ?

    Hi, I'm having trouble to launch programmatically the process HH.EXE ( with CreateProcess( ) or ShellExecute( ) from another appplication). I 'm having the same error (0, the operating system is out of memory). So, I'm suspecting that the parent process is not able to reserve the necessary amount of memory for its child (HH.exe). Then, I think the only solution is to create the process(HH.exe) in a separate context (because when I use " START--> Run--> Open " to launch HH.exe, everything works well). But Actually, I don't how this can be done. Does anybody know to create a new process, but in a whole new context, separate from parent (programmatically) thanks. That's what I'm using. doesn't work; E ...Show All

  • .NET Development Deleting file from fileserver

    I would like to be able to delete a file from a file server. I have code to do it for an ftp server, but u nfor tunately applying this code to files on a file server does not work since the following does not exist: FileWebRequest request = ( FileWebRequest ) WebRequest .Create(serverUri); request.Method = WebRequestMethods . File .DeleteFile; I also have a way to make a temporary z drive and work with code that basically inputs into a command window. The problem here is I am not sure what the command line is to delete a file. Also, the file server will be protected by a username and password, so I need to take that into account. Does anyone know the best way to go about deleting a file from a file server If you leave ...Show All

  • Smart Device Development Is correction memory cosumption for Object Instance.

    Hi all, I have the following Class which when I create an Instance of takes up around 25KB. Is that normal. The properties are filled with ints and small strings, the Answer Collection only ever contains one instance, and the Questions Collection (m_colQuestions) contains between 1- and 30 (though rarely is it this high) of its self. public class RecNspInspectionQuestion : MCS.PocketPC.Record, ICloneable { public enum Columns { QuestionTreeUID, ParentUID, QuestionTypeUID, QuestionNodeTypeUID, ShortDescription, LongDescription, IsActive, IsRequired, Reference, SortOrder, Notes, IsSystem, AnswerSetTypeUID, End }; public int m_nQuestionTreeUID = -1; public int m_nQuestionTypeUID = -1; public QuestionNodeType m_Ques ...Show All

  • Visual Basic Simple thing needed PLEASE!!!!

    I want to either: Have a textbox a button and a picture box - User types somthing into the text box, If its one of the words in my i've put in the IF bit of my script then the picture changes to a different one, else it leaves it the same. Or Have some radio buttons / tick boxes. User clicks in a radio button / tick box and the picture in the picture box changes accordingly. BUT If there isn't a way to get the picture box to change pictures like that some text that changes would be OK as a second choice. Thanks in advance! to load an image into the picturebox: Me.thePictureBox.Image = Image.FromFile( "path\filename.ext") you can load it at any time you like, any picture y ...Show All

  • Visual Studio Express Editions Update dataset works, but program doesn't recognize the update

    my dataset updates properly all the way back to the original database. Everything checks OK. When another procedure checks for the changed data it finds it unchanged. I changed the database property "copy to output directory" to copy if newer. What gives See if this thread helps you solve your problem...there is a tool at the bottom of the post that will help you monitor the db file... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=427451&SiteID=1 ...Show All

  • Visual Studio more info. . .

    It appears that the standard VS 2005 documentation has been registered twice. In the contents explorer I have two entries for Dev Tools/Ent Servers/.Net Dev/Mobile & embeded/Office Solutions/Web Dev/Win 32 & Com/Knowledge Base In the ide, when I have dynamic help showing, two identical topics are displayed for any selected item. In the help system, if i click a link, a dropdown displays two identical topics for me to select from. Any idea how to fix this Hello Blair, From your description it looks like you first installed MSDN Library for Visual Studio 2005 and then you received MSDN August Library. During August library installation when prompted you selected to keep MSDN library for Visual Studio 2005 and als ...Show All

  • SQL Server How to Convert String Data type to DateTime in Derived Column Control In SSIS Package

    Hi , I am Using Derived column between Source and Destination Control. the Source input column PriceTime is String Data type. but in the Destination is should be a DATE TIME column. How to Convert this string to DateTime in the Derivied Column Control. I already tried to in the Derived column control PRICEDATETIME <add as new column> ((DT_DBTIMESTAMP)priceDateTime) database timestamp [DT_DBTIMESTAMP] But still throwing Error showing type case probelm Pls help me on this Thanks & Regards Jeyakumar.M Hi Thanks for your reply. The Input Column What ever u told above the same Format i am passing the source column.But that format Data type is String . YYYYMMDD Hr:MM:SS ...Show All

  • .NET Development .NET equivalent of std::set

    Basically, I would like a generic class which stores only key values, is sorted on the key, requires keys to be unique, and is better than O(N) when adding elements to the set. I would have thought this would be the SortedList class, but it takes a key,value pair, like the SortedDictionary. I could use one of these classes I suppose, but it seems like this requirement would be common enough that such a class would exist as part of the standard library. Any suggestions hmm how is the Dictionary different than the SortedDictionary And is there a class like this with just a Key parameter, rather than Key, Value That would be a bit more convenient, since I only have need of one value. Anyway, I tried both in ...Show All

  • SQL Server Open Xml

    Hi All, I have this sql syntax which displays the records within the xml but instead of displaying 4 records (3 records relating to the last question ID) but instead resulting in only two records picking only the first options 'Unhelpful'. Definitely doing something wrong here, please advise! DECLARE @doc xml SET @doc = '<DivisionName> <QuestInfo Custref="18759" SubDate="2006-01-01T00:00:00" Polref="30018759" AgentID="4189" ClaimRef="14024-5647-890"/> <DVName>Ho</DVName> <DvcodeNo>1</DvcodeNo> <ClaimGroup> <CustSurveyNo>4</CustSurveyNo> <ClaimGroupType>Water</ClaimGroupType> <Questions> ...Show All

  • Visual C++ HOW compiled EXE files works on other PC...

    I am using Microsoft Visual Studio 2005 and I do and Windows Aplication. This exe files run on computer, but It does not run other computer.. A really have not found solution 2 days, and I have very big disappoinmet.. Would someone who can do it please me !!! URGENT !! THANKS AFAIK, you need to have the .NET Framework installed on the other computer in order to run your .NET Developed application. Well, this works for VB.NET/C# but not sure about VC++ 2005. There was a thread about this earlier, try locating it. Perhaps these would be of some help http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=54317&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=265954&SiteID=1 http://forums.microsoft.com/ ...Show All

  • Visual Studio Tools for Office Disappearing Document ActionTask Panes with Word

    I've been working on a fairly complex Word VSTO application which is about complete, except for some intermitent strange behavior which happens after a document has been saved. When reopening the document ( either the saved one or starting the new one via the application word template) one of two things may happen. 1) the document action pane begins to display and then closes , leaving only the getting started task pane. it is not listed as a disabled application, logging off and back on will fix the problem as if it had been black listed 2) The Document Actions pane stays open, but the two actions pane controls which should be there are not visible, despite code (msgbox(me.ActionsPane.Controls(1).Visible) claiming the control IS ...Show All

  • Visual C++ C++ declaration of Large number Variable type

    I want a variable to hold a very large numbers (10 bytes, 80) bits and looks like this in decimal 1208925819614629174706176 (25 digits) how do I declare this as a varaible in the begining Plus I am also using pow(,) function and it keeps throwing up an error. James ( james2003g@hotmail.com ) Yes, it is a library. Yes, there is no other way. May I know, what are you using big numbers for Andrei ...Show All

  • SQL Server Is SQL Server CE really the solution?

    Hi,   So far, with other programming platforms, I used to have the facility, embedded within application .exe, to:        1- Interface with already existing "multi-user" database (ex: Oracle, Access, etc.)        2- Create/access "local"/"Single-User" files for processing purposes.  (try to minimize network trafic...)   So far, I've read a lot about SQL Server products (SQL Server, Sql Server Express, SQL Server CE), at least all articles I could find, and would like to have your opinion on what would be the best approach        1- What SQL version to use for "multi-user" databases &n ...Show All

©2008 Software Development Network