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

Software Development Network >> Ruben Cer.'s Q&A profile

Ruben Cer.

Member List

Mark Donnelly
gabrielAtIris
Chanchito
Paolo Tedesco
Korab
JamiePe
Dasgooch
TonyTony
Raj_1234
KSNANA
Hikaru79
jon galloway
tchikad
DannyMc
Big Ben
Martin Cremer
FrdBed
HughFraserLarne
monika
aloulou_2007
Only Title

Ruben Cer.'s Q&A profile

  • Windows Forms Set my application to be on top!?

    I'm developing a windows application using VS2005 and C#. My application is composed of various modules/projects: 1 is a WIndows Forms executable that contains the main form. All the others are c# class libraries. However, all the class libraries contain windows forms that are instantiated from the main form. Right now I'm having an issue when opening my login form. The process is more or less like this: The Windows Application Executable runs, opens the Main Form and, on the MainForm_Load event I create an instance object of our Security Class Library, which contains the Login Form. After that I basically show the Login Form in a modal way. ...Show All

  • Visual FoxPro Upgrading from a previous version of Foxpro

    I'm currently upgrading an application written using foxpro 3.0 Like the application Paul was rewriting a few threads back, the only thing that doesn't work is the old character screen menu. It had 10 @SAY and 10 @GET commands and a READ. Then it routed execution to .PRG files with a DO CASE ... ENDCASE loop. I am not looking into investing the time to rewrite the existing UI, and would rather just get the old program working as it was. The program itself compiles with no errors, and everything looks fine when the menu is filtered through using the keyboard, but when the mouse cursor goes over one of the selections, all displayed text a ...Show All

  • Windows Forms Composite control components that are not clipped?

    I am creating a composite control. It has Height equal to a combo box. i.e. One line or 21 pixels. If I place a combo box in the control, I can click the down arrow and the list is displayed beneath the combo's text box as expected. My question is, how do I get the same behaviour if I am constructing my own control based on, for&nbs ...Show All

  • Windows Forms how to lock a drive and detect when CD is ejected?

    I found WM_DEVICECHANGE message and it has the parameters I need. But does anyone have a sample code on how to get it to work Can't say I've used it so I have no experience to tell you this is definitely the way to go, but have you checked out the System.Management Namespace (WMI) ...Show All

  • Visual C++ whats wrong with declarign a pointer?!?!?!?!

    hey guys, this is dead simple, i have an mfc application with shared dll. i declare a pointer as follows: int* t = new int [2]; and its exceptioning saying out of memory! wahats wrong with that i know that i can do it using int t[2]; but i want this as a breif explaination of another problem i have. i cant spot why it doesnt like it at run time! Glad everything is working as expected now. I just wanted to make sure the issue is resolved. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Studio 2008 (Pre-release) nested ItemsControls

    if I have nested ItemsControls bound to different datasources how would I go about getting the current Item of the outer control inside the DataTemplate of the inner ItemsControl Thanks try this in XamlPad. file can also be found at http://eric.burke.name/dotnetmania/code/NestedItemsControl/Page1.xaml note that i used AncestorLevel=2 in the RelativeSource inside the InnerListBoxItemTemplate because if i don't specify that, it will find the ListBoxItem for the inner item, and we want the outer item. hope that helps! < Grid xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " x ...Show All

  • .NET Development MSXML 3.0 Programming xml data into Excel 2000

    hi i have to show xml data into excel 2000 in a formatted way for that i am using MSXML 3.0 DOM object but i am getting while programming bcz i am not getting any suitable help of programming for that could any on have any idea about it and could send me some link regarding programming help. Thanks You may write C++/VB/JavaScript program that takes data from DOM nodes and sets values in Excel 2000 stylesheet cells. Excel is exports reach object model for this. It may be not so easy to find information about Excel 2000 because most articles are now discuss Excel 2003. You can start from http://msd ...Show All

  • Windows Forms Deploying a Win Form via Web Server

    I'm trying to setup a web server on my intranet to deploy windows forms applications.  I've written a VERY simply app, the classic "Hello World" and have successfully tested launching the app from my local machine (ex. http://localhost/helloworld/helloworld.exe) When I move the app to the actual intranet web server (Win NT 4, SP 6, IIS 4, .Net Framwork  ...Show All

  • .NET Development How to monitor smtp, pop3 and imap4 traffic on localhost?

    Hi! Can you please advice me how to monitor smtp, pop3 and imap4 traffic on the computer and catch emails The idea is to make an integration to the CRM system so that certain emails are stored to the CRM when sent or received. Do I need to use sockets or are there easier ways of doing this Thanks in advance, Jukka Another possible approach is to write your own proxy.  That is, if all the email is sent/received using an email client, you could do the following: 1) Write a program that listens on ports 25 (smtp) and 110 (pop3) and provides the appropriate functionality per the RFCs. 2) Configu ...Show All

  • Windows Forms Genetic algorithms in Terrarium

    Hi, i wonder if anybody tried to introduce creature with genetic algorithm and if he are, what was results of this. I planing to introduce soon one such creature but it needs to bi trained in local farm to get some advanced behavior before something kills it. But, since this decision tree will be developed over generations, without actual coding, how can i& ...Show All

  • Visual Studio Building all configurations and all platforms

    Hi: I'm sure this must be a FAQ, but I can't find the answer anywhere. I have a MSBuild project file that is building a Visual Studio solution file using the MSBuild task. I want to build every configuration of every platform in the *.sln (references *.vcproj) file. How do I go about doing this  This used to be easy in VC6. Sure. I can build all configurations and all targets by doing the following: "C:/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin/MSDEV.COM" project.dsw /MAKE "ALL - ALL" ...Show All

  • .NET Development finding next double number

    Hi, I have a Double value and I want to find out the immediate next number that comes after it. Dim temp as double = 1.4 then the value I want is 1.5 if it is 1.0004 then I the value I want to is 1.0005 How can I get this Thanks, Try something like this: Dim precision as integer = GetPrecision(temp) temp += Math.Pow(10, -precision) where GetPrecision returns the number of decimal places in temp. I cant find a built-in function to do this, so if nothing else try this for GetPrecision: Dim precision as integer = 0 while(temp <> Math.Floor(temp)) { precision+=1 temp*=1 ...Show All

  • Visual Studio Express Editions How to Find Child Nodes in a TreeView Control

    This will hopefully be a simple question... I have a treeview control (Treeview1) that gets filled programmatically with different numbers of nodes and child nodes. I am trying to find out how many child nodes one particular node has and what the text of these child nodes are. I know the parent node's name is "Drives" and that each of the child nodes under this node will be a drive letter followed by a colon and backslash (such as C:\ or D:\). Is there a way to find how many of these child nodes exist and what their names are I'm not sure if there's an easy way to use Nodes.Find, but it seems to be leading me nowhere. ...Show All

  • SQL Server set up problems by sql express edition 2005

    TITEL: Microsoft SQL Server 2005 Setup Problem ------------------------------ SQL Server Setup Failed to compile the Managed Object Format (MOF) file C:\Program Files\Microsoft SQL Server\90\Shared\sqlmgmproviderxpsp2up.mof. By compiling with mofcomp sqlmgmproviderxpsp2up.mof : can't find class , instance of property CIMTYPE. Who can help me Henk Please provide more details about your configuration. Are both the OS and Express English, or are they localized Is this XP SP2 Any details you can provide on what makes your system unique ...Show All

  • Windows Forms Hidding a row in datagrid?

    Can we hide a row in datagrid  if yes then how The answer to hide one row in datagrid is in this link: http://www.vbcity.com/forums/topic.asp tid=37954  ...Show All

©2008 Software Development Network