chinarut's Q&A profile
Windows Forms FTP via .NET windows form? How to?
I need to transfer files from a local machine to a hosting facility via a .net windows form. I' thinking I'll accomplish this via an automated ftp transfer - can someone point me in the right direction Thanks! ...Show All
Visual FoxPro there is a problenm when save unicode data into SQL Server
Dear Expert: I am facing a problem which is after the Asia characters saving to SQL server (MSDE version), the field will show all question marks, the develop enviroment is VFP 8.0 and the Windows system is already configured to Unicode, the VFP collecting Sequence is configured to Machine. I have also set the field format in database is nVarChart, when I manually key in these Asia characters, the SQL server is accepted. Any response is a very appreciate. ...Show All
.NET Development Help: new to Data access stuff
hi all, i am completely new to working in data base access using c# and visual studio 2005. i do not have db yet. where can i get beginners tutorial on creating, and accessing data base in VS2005 and c# will really appreciate. rnv Try: http://msdn.microsoft.com/data/DataFundamentals/default.aspx http://msdn2.microsoft.com/en-us/library/ms186197.aspx http://msdn.microsoft.com/data/dataaccess/whidbey/default.aspx http://msdn2.microsoft.com/en-us/library/ms169620(SQL.90).aspx Alex. ...Show All
Windows Forms New Default Line
Hi Guys. I've been working with the DataGridView for some time now and have run into a problem. I hope I'm able to explain this good enough. The DataGridView automatically gives you a default new line (the one marked with a star *) when you're working with it, but in my case I need to call it... I'm in line 1 - and I programmatically set the ItemCode field value to 651... (From another form). When I do it manually it gives me the "new line" underneath line 1. When I do it programmatically "CallerCell.Value = item.ItemCode" it doesn't... How can I force it to produce a "new line" for me. T ...Show All
SQL Server Where are All Snapshots Data Stored
Dear Anyone, I would just like to clarify where are the data that are in the report snapshots stored For example, if I have 100 snapshots of 1 report, where are these stored Thanks, Joseph ...Show All
Smart Device Development R
Hi I'm writing my first Device app... I get the following error from seemingly innocuous code: Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '%CSIDL_PROGRAM_FILES%\DeviceApplication1\DeviceApplication1.exe'. Error 0x80070020: The process cannot access the file because it is being used by another process. Device Connectivity Component Any suggestions as to what might be wrong Thanks, Bakis. I reset the PDA but I still continue to get the same error. I also looked to see if it was in memory or somewhere on the PDA and it is not. I am trying to dep ...Show All
Visual Studio Team System Beta 3 Refresh: Cannot add users from another (trusted) domain to team project.
Hi! We have TFS Beta 3 Refresh running in our development domain (DEV). All our user accounts are living in a different domain (PROD), which is also in a different forrest. DEV is a native Windows 2003 domain, while PROD is a Windows 2000 domain. There is a one-way trust from DEV to PROD. When we try to add a user from PROD to a team project group such as Contributors, the following error message appears: Couldn't add user/group 'USERNAME'. It may be in an incorrect domain. Are we doing something wrong, or is this actually not a supported scenario The latter would be terrible; I think the need for adding users from multiple domains wi ...Show All
Microsoft ISV Community Center Forums Problem with Defined names
I am using defined names to update my charts on an excel sheet. Well here is the thing, it worked fine up untill today. All of a sudden it doesn't want to update anymore or it will but will miss the last 6 data points. I set the range to 5000 so there should be plenty for it to catch up on. Anyone else encounter this problem If so how did you fix it Here is what is under the defined name: =OFFSET(Data!$Y$12,0,0,COUNTA(Data!$Y$12:$Y$1023),1) Thanks Tiger Per our support engineer: Thanks for using Microsoft ISV Community Forum, according to your problem; I wrote a sample excel file to r ...Show All
SQL Server Writing Insert and Update Stored Procedures for Normalized Schemas?
I have a database schema that has an Address table used to store addresses for different entities such as Customers and Employees. I want to reuse the same Address record between different Customers and Employees without duplicating any address information. I'm not sure what the best approach might be. Should have I have seperate stored procedures on the Address table that update and insert new addresses, where each Address record remains immutable once created (So the update stored procedure actually creates a new Address record if the data changes). These stored procedures would then be invoked by business logic and used in tandem with sto ...Show All
Software Development for Windows Vista question about to link the Compressor filter
hello, everybody. my capture chain is as following: capture source filter-->compressor filter-->avi mux-->file writer my connect codes is as following: hr = pGraph->Connect(pCapturePin, pCompInputPin); if(FAILED(hr)) { return hr; } hr = pGraph->Connect(pCompOutputPin, pAVIMuxInput); if(FAILED(hr)) { return hr; } now i can run my program correctly through these codes, but when i quit the program, it gives me a hint,'the instruction at 'xxxxxx' referenced memory at 'xxxxxx'. the memory could not be read. ' then i use this code to replace the up codes(don't use the compressor): hr = pGraph->Connect(pCapt ...Show All
Visual Basic Create Mdi Child Form
Hi, I am new to vb.net and wants to creat a desktop application using mdi parant and child form. please tell me how can i creat a mdi child from in vb.net for a mdi parant from. thanks This is wrong: Dim AboutF As AboutForm AboutF = New AboutF AboutF.Parent = Me AboutF.Show() it should be this: Dim AboutF As AboutForm AboutF = New AboutF AboutF.MdiParent = Me AboutF.Show() ...Show All
Windows Forms what is the Perfect MDI Application
I am looking for best performance in MDI Applications , I mean Imagine that you have an MDI Application contains 10 Child forms what is the best way to control these childs (using the methods Show() , and Hide()) or what . thanks in advance Depends if the 10 child forms are exactly the same If not i just open and ...Show All
Windows Forms Rounded text
Is there a way to put rounded text on to a graphic. I can put text on to one by using the Graphics.DrawString but it only prints in a ptright line. I tried using a GraphicsPath and .AddArc than the AddString which I thought was going to follow the path but it to prinnts in a stright line. Can any one help me out on ...Show All
Visual Studio Team System Web Part for source code access?
Is there a web part (and if not, is anyone working on one) to allow read-only access to a project's source control What I'd like is to be able to navigate through the source tree. I want to be able to click on a file to see an colored/highlited file based on the syntax. I want to be able to see what version each change was from and I want to be able to get to any version of the file. In an ideal world (though it'd be much harder), each type should be cross-referenced so that I can click on one and it'll take me to the declaration for it. --Oren We definitely don't have anything quite li ...Show All
.NET Development SerialPort Problem - Possible Encoding problem?
Hi, we are using the SerialPort class and cannot seem to get it to receive any data. We don't receive any exceptions when starting up, just no data events. We have written a very simple test application to verify that there is indeed a problem. When using an application such as Hyperterminal or the old MSComm control, data is received just fine. We are using the release version of the 2.0 framework (not a beta) The serial port is a typical serial port in the back of a desktop PC (it's not a USB to serial or anything). The data coming across the wire is binary data - not text. Is there any sort of way to figure out what is going on This ...Show All
