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

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

DennisWCP

Member List

Nolubez
gauls
Dimitry
Jason_B.
XPM
Sandor Fabian
Raffaele Rialdi
Luis Simões
croarty
zquad
HopeDreamsComeTrue
hrubesh
tthellebuyck
Duvalu
SvenC
Frank Carr
Chief G
Rory Clark
Wartower
asalcedo
Only Title

DennisWCP's Q&A profile

  • .NET Development sockets vb .net

    Hi! i'm looking for winsock control in vb .NET, but i can't find it. I need an array of sockets.. Is there any way to work like VB6 (Drag & Drop, and calling .DataArrival, .Connect and the other methods and events) I'm newbie in this area.. Thanks! you pretty much have to keep listening to the port (on both applications, client and server) and process data the way you want to keep listening Is what you say about create another thread Because, if I keep listening.. the application will be blocked until I receive something, isn't it ...Show All

  • .NET Development Naming conventions and Microsoft recommendations

    Hello, What is naming convention for different toolbox items you put on a form If I say I have a DataGridView on my form do I call it dgvCustomers or DataGridViewCustomers or CustomerDataGrid or ... it really is up to you - the naming convention is usually first 3 letters of the component, shortened (like text -> txt, or combo -> cmb) thats easily identifiable what type of control it is, then followed by the type/purpose of the control so if I had a datagridview of a customer table then I would do dgvCustomers, which means its a datagridview of customers ...Show All

  • Visual Studio Solution Events does not trigger properly

    Hi, I tried to capture 'solution open' event and the 'solution before close' event using the Applition Object Model. It did not work when I first connect the Add-in and then open the solution, but it works fine when I first open the solution and then connect the Add-In. I went through the Connect.cs but I could not find any reason for this. Any idea why is this happening Best regards, Imesh Hi, Thanks for your reply. Actually I'm using class variables. As I mentioned earlier it works fine when I first open the solution then connect the Add-in from the Add-in manager but it does not work at all if i first connect the Add-in and then open the solution. <inside a toolbox window constucto ...Show All

  • .NET Development Problem in Using the "FtpWebRequest" in VS 2002

    Dear all, I need to write a program that need to upload some files to a ftp When I search in MSDN, i find this articals http://msdn2.microsoft.com/en-us/library/ms229715.aspx#codeexamplesection when I copy the code and apply in my program, it has the error message that cannot find the namespace of the FtpWebRequest I have updated the .NetFramework to 2.0 I have no idea to solve this probelm. it would be great if someone can help me to solve it. or povide another method to upload a file to ftp. Thank you   Michael K. Barnett wrote: Vs 2002 I have an example using Studio 2005. I sent you the example in an email attachment...for 2002  I also sent you an ...Show All

  • Visual Studio Express Editions showing a table field value as a messagebox

    I just want to know how can I show a field value on a table as a messagebox OK. you would pretty much read data into a datatable. (such as from SQL or some other source)   Then, say to get the value of Row 0 (first row) and Column 2 MessageBox.Show(theDataTable.Rows[0].ItemArray[3].ToString());     of course, make sure you check to see if rows and columns exist. you can also perhaps use a foreach loop for reading a data row at a time   foreach (DataRow curRow in theDataTable) {    //get the value of the first column    string theValue = curRow.ItemArray[0].ToString();   }     the code above basically goes through each row you hav ...Show All

  • Visual Studio 2008 (Pre-release) Abort animation

    If i've started an animation with BeginAnimation is there any way to stop it  I have a program where the user can change the animation but when they do that i get realy bad performance if the previous animation isn't complete. The code looks something like this: void handlekeys(Key key) { DoubleAnimation scroll; if(key == A) scroll = new DoubleAnimation (100.0, duration); else if(key == D) scroll = new DoubleAnimation (200.0, duration);   image.BeginAnimation(Canvas.TopProperty, scroll); } If the image isn't already moving the program run smooth but if you press A and then D quickly you realy get performance issues. In the code above you will probably not notice anythi ...Show All

  • SQL Server insert only time in sql server

    hello, i have prob in inserting the time values in sql server. i want to insert only time in sql server database. plz help me how to do it reply me.it's argent. Regards, Shruti. hi, you can not... SQL Server does not provide just the "time" data type, but the "whole package", datetime (or smalldatetime)... if you not set the date protion, "19000101" will be set, where 00:00:00 (midnight) will be set if you omit the time part.. regards ...Show All

  • .NET Development XML/VB.net for beginers

    Hello all, I'm fairly new to VB.net, and would like to learn a little bit about the XML classes and such built in to the .net framework. I don't know any XML, but am eager to learn. I've looked around online, but can't seem to find any good tutorial for my needs. Can anyone suggest a good tutorial for VB.net and XML Thanks so much, any input is greatly appreciated! Thanks again! -Robert You have not said what your particular needs are or why certain online stuff did not help. Therefore I dare to point you to MSDN first, for the .NET framework 1.x try this . Lots of the general introduction is of course valid for .NET 2.0 as wll. If you are looking for code samples then the quickstart samples have a section on XML . If you use .NET 2. ...Show All

  • .NET Development paypal integration???

    i want to integrate widh paypal howwwwwwwwwwwwwwwwww.... i have merchant account.... and making a shopping ws so needs to integrate paypal for credit card transactions Hmm You are probably trying to gether some Donations :D Lol. Opps Sorry Adnan bhai! I was just joking! There is nothing a big deal in it I think, and you dont even need to do any programming, just write to paypal that you want it on your websites, They'll give you some script, you have to simply put that script in your webpage and that's it! Yes! Please, do not forget to Mark as Answer . I'm not saying this, I just read your signature . Best Regards, Rizwan! ...Show All

  • Windows Forms Setting the tag on an image in an imagelist

    Hi, I have a base form with a protected imagelist which inheriting forms use. I need to set the tag property for the images within the imagelist. Bizarrely, this does not seem possible. In my base form constructor, I have code like this:- imgBuySell.Images[0].Tag = "myTag1"; Stepping through this in VS2005, the above line runs without exception, but when I then inspect imgBuySell.Images[0].Tag its' value is null. Sure enough, the ImageCollection exposed by ImageList.Images is readonly. (It's still very surprising that an exception isn't thrown here). Is there any way to do this I really want to be able to put my imagelist together in the designer, so as not to have to mess around with image streams and serialised resources and ...Show All

  • Software Development for Windows Vista How to host Windows Workflow(WF) into Windows Presentation Foundation(WPF) ?

    Can anybody please tell me how to host WF into WPF I already hosted WF into winforms using panel. But i want idea about integration of WF into WPF. Thanks, Pravin Arote Hey Pravin - I wonder if the following sample will help you: http://msdn2.microsoft.com/en-us/library/aa970891.aspx If it doesn't can you describe to us the scenario so we can try to find some help. Thanks, Vignesh ...Show All

  • Software Development for Windows Vista Workflow application working in one comp but not in another

    Hello, My problem is the following: I have an ASP.NET application with a validation workflow inside. It uses the membership and roles mechanisms provided by ASP. In my computer the application works perfect, the workflow starts, does all its job and completes successfully, but when I move the application to another computer the workflow aborts after saving some changes to the database. The workflow starts, gets 2 different events (start and save) and then calls an external method to save changes to database. It saves those changes (I checked the DB and it's OK), and then aborts. The problem is that when the workflow aborts it doesnt give any exception message, so I have no idea what the problem is, and as it works perfectly in my computer ...Show All

  • Visual C++ Allocating a variable-length structure/class

    Is it possible to create an instance (using new) of a variable-length structure or class When I say variable-length structure or class, I mean a structure or class that has an unsized array as the last data member. I can allocate an appropriate amount of memory by allocating a char array, and I can cast that pointer to a pointer of the class I need it to be. Unfortunately the virtual pointer seems to be unintialized so I can't call a virtual function. Or perhaps I misunderstand what is happening, but I am getting a vfptr with all cd, indicating it is uninitialized. What I am actually doing is I have a base class and many derived classes. Many of the derived classes have variable-sized data. The data is being read from ...Show All

  • Visual Studio Express Editions upgrade from trial VS Professional Edition to Express Edition?

    Hi,     I have downloded VS Professional Edition 2005 - 90 days trail version two months before and started developing on that. now only i came to know that VS Express editions are free forever. so that I would like to move to express.     my question is, the only way to do this is uninstall previous version and install the express edition      if I do this, shall I continue working on my previous projects developed with Professional any help would be greately appreciated. Thanks in advance.   Thank you very much for your quick reply. i am using vb.net to develop both windows and web projects. that means, i need to install Visual W ...Show All

  • Smart Device Development how to display image icon when shortcut is displayed in the MRU start menu?

    Hi, I added a shortcut of my application to the Start Menu folder with a customized image icon. The image icon is displayed properly in the executable and in the shortcut in the Start Menu folder, however, when the shortcut is displayed in the MRU start menu, the icon is displayed with the default icon, my customized icon is not displayed. I use 32x32 pixel icon. Do you know how I can make the icon displayed on the MRU menu Do i need to copy the icon file to any special folder Thanks, Ares ...Show All

©2008 Software Development Network