aiopunk's Q&A profile
Visual Basic [vb 2005 expr] Synchronizing folder's content
Hi guys! I must do something really "simple" using Visual Basic 2005 express (on a windows 2000 or xp system): I have 2 folders: hansel (remote folder connected as a net unit) and gretel (local folder) I want, when user clicks on a button, to synchronize gretel folder's content to that of hansel folder (NOT viceversa: I want to add or delete NOTHING in hansel folder). In other words: gretel must be an exact backup copy of hansel. ( ...Show All
Windows Forms User control with textbox keeps beefing when non-printable is pressed?
Seems to be processing the key event; however, i keep hearing a beef on non-printable keys. Thanks Hi, Is your problem solved yet Thank you, Bhanu. ...Show All
Visual C# Need help on basic operations with data from data sources
I know how to work with data from an sql database, if i do it the manual way (coding/sql-queries). But i want to learn how to do it "the Microsoft way". I have added a Datasource: "_myDatabaseDataset" (myTable contains fields ID and Name). I have dragged the ID column onto my form as a combobox. Whenever i change the value (SelectedIndexChanged) i want a messagebox showing "Name" of the ID that is selected. How do i do that MessageB ...Show All
Visual Studio Visual SourceSafe
Hello I had installed Visual Studio 2005 BETA 2 Team Suite. And in this version is Visual SourceSafe included. Now i have installed Visual Studio 2005 RC Team Suite, but the Visual SourceSafe is in this Version not included. Can anywhere help me Sincerly, roger ...Show All
Visual Studio Team System Coverage Information
Hi, I have read about the code coverage tool available in the Visual Studio Team Edition. It seems, please correct me if I am wrong, that we actually need to write codes to test the targeted application in order to get the coverage information. My question is that is it possible to get the code coverage information if we test the ASP.NET application directly from the web/UI My plan is to have a "profiled" ASP.NET applic ...Show All
Microsoft ISV Community Center Forums Extracting Text from body of Outlook email into excel
Can anyone help me to finish off this code I am extracting text from the body of email messages in Outlook into Excel. The email messages are standard format and look like this: Questions answered by: joy smith ID #:25555 Total number of questions answered: 20 Total number of incorrect answers: 3 Grade as percentage: 85 % List of question(s) with incorrect answers. The incorrect choice is in brac ...Show All
SQL Server sql question
Hi i created a table that has 3 columns and the primary key is ID and has the Identity turned om .. she will increment herself bye 1 every time new row is added my problem is... when i delete a row.. i want all values in the primary key atuomaticly go 1 back.. ( in MySql the auto increment did that) example: ID | Something ----------------------------- 1 | aa 2 | bbb 3 | cccc 4 | dddd 5 | eeeeee command: delete from table where id=3 R ...Show All
Visual Basic Compile Issues
Ok So the problem is I have a ascx control called control1 Control1 makes a reference to control2 Upon delcare of control2 inside of control1 i have an error "Type control2 is not defined" But there in the same project. The Kicker..!!!!!!!!! Ok i can installed this(Move the files) to a 2003 server and it does not work. I can reget version out of source safe and put it on the 2003 server and it works. I ed ...Show All
Visual Studio Team System Need Team System Warehouse Schema Documentation
Hi, I am working on help writing a book chapter that explains how to creating custom reports for Team System. For that reason I need detail documentation on "Team System Warehouse Schema" (for Beta3 onward offcourse). Also a Team System project (MSF for Agile) Database archieve which contains sample data (so that I am create meaningfull reports) would be very helpful. Many thanks in advance. Syed Raihan. ...Show All
Windows Forms "bubbling" events in a usercontrol?
I've read that event bubbling isn't supported by windows forms, and that you would have to attach whatever event you're trying to capture to each child control that you want to pass the events, which isn't really bubbling. I understand the concept but don't know exactly how to implement that. I'm adding controls to a panel dynamically, and attaching an event handler to the controls as they're added for their click event. For Each dr As Da ...Show All
SQL Server how to correctly work with two (or more) databases?
Does anybody know how to work with two (or more) databases in SQL Server 2005; or where that information can be obtained I searched online, in BOL and asked in this forum but with no success. information in this posting does not work; results in invalid object name (source database) and/or database does not exist (destination database) errors: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=292125&SiteID=1 this post about the ...Show All
Visual C# Casting an enumeration that has a defined type..
public enum foo : ushort { foo, bar } ushort test = foo.bar; Cannot convert from 'Test.foo' to 'ushort' Sure, I can make variable of type foo, but I'm encoding the value to a network stream, so I want it as a ushort. The thing is, I specifically told the compiler the enum is of type ushort, so why do I have to typecast it You need to cast it :-) ushort test = (ushort)foo.bar; Oh - you sai ...Show All
Smart Device Development CeMAPI example...
Hi everyone, I’d like to start working with CeMAPI under Windows Mobile 2003, is there any docs about it, some links that points me to the right direction I found some docs in msdn, but it shows only how to start and it’s for PPC2002 using ActiveSync service, I’d like to work with a POP3 account in the WM2003. Is it possible does anyone have already made some application send and receive messages is there some examples I’ve created the POP3 acc ...Show All
.NET Development Consuming web service and reading attributes
Hello, I have got a web service that insert a new order. If this error is inserted I get 4 attributes like date, id, order, status back. I want to access my ws from my win forms with that code: Dim ws As New service.order Dim strAll = MyService.Order("test") I thought strAll would contain the complete result of the order, but than I run the application only the name of the object was passed. I could return the time with MyService.Ord ...Show All
Windows Forms No CellValueNeeded event in Virtual mode
I've setup my DGV with virtual mode equals to true and I've created an event handler for the CellValueNeeded event. However, I found that this event is not raised. I'm not sure whether this is caused by the data type that it binded to. The column is binded to a type of nullable(of decimal) in my custom business entity. It will raise exception when the DGV is loaded. I'm trying to use virtual mode to prevent this problem happening but seems no ...Show All
