Thanks for u reply !
henur
Posts
-
FTP Server -
FTP server [modified]Thanks for u answer David ! I will get better next time about the forum And by the way, this user "hopingToCode" i find him/her very rude. I seen his/hers answer to other people also. Any way Thanks again ! Heino
-
FTP ServerHi Can i have an FTP site in IIS 5.1 installed, configured, running and working under Win XP Prof version 2002 SP 3 ? Anyone who knows ? Heino
-
FTP server [modified]You have any help to give ? The application is written in C#
-
FTP server [modified]Hi I have XP prof. version 2002 with SP 3 installed. I try to develop an FTP application but i now unsecure about my "FTP-server" I have installed Internet Information Services (IIS 5.1) and setup and configured as it should be (i think). This is the problem "I think" ! I dont know in first place, can i have a FTP-site on my machine or must i have another machine with Win Server 2003 or 2008 ? You see - when i log in with my appl. i get the message "user test cannot log in" ALL the time. I probably got lost in the user account settings ? Anyone knows ? With kind regards Heino
modified on Thursday, June 11, 2009 5:42 AM
-
Windows Media Player 11Hmmmm....maybe. What i meant is that if you start WMP from startmenu then you have the chance to set filetype by going thru the menu: TOOLS > OPTION and then the tab FILE TYPES. Yes...so maybe this should do it then I will give it a try. Thanks for your help Heino
-
Windows Media Player 11Hi Anyone who knows how to add filetype programmatically in media player ? For instance: The player accept .wav but i wish to set the player so it also accept .mp3, programmatically. Any ideas ? I tried msdn but dont find anything With regards Heino
-
C# Control for volumeI using NET 2.o and VS2005. Maybe it's lack of competence from my side, but i cannot figure out how to set the background to transparent of the Trackbar. The only way i see is to redraw my own style trackbar. Heino
-
C# Control for volumeOk..now i have tried , but.... As i can see....i can set my usercontrol to transparancy but i am not allowed to set the Trackbar-control backcolor to Color.Transparent anyway. Heino
-
Get "current playing" movie/song in WMPYou must have AxWMPLib in your reference of your C#-project. Then you have to add the Mediaplayer as a control to your form. For instance, name the control to "WMP". After that you can do. WMP.URL = "the musicfile full path"; string cName = WMP.currentMedia.name; Heino
-
C# Control for volumeOk , that could be an idea. I do not know how to use the SetStyle, but i will check that out. Thanks. Heino
-
Get "current playing" movie/song in WMPThe playing item could be found in: WMP.currentMedia.name Heino
-
C# Control for volumeHi Does anyone have a tip about a nice C#-control for volumesettings ? The common trackbar will do, but i need one where i can set Backcolor to Transparent, and the standard trackbar does not accept that. Any tips ? With Kind Regards Heino
-
Problem with update of a listviewIt's done manually. Reading a datareader and adding items by items. If i execute in debug-mode i see information about every post, even the one that is not added to the listview. Heino
-
Problem with update of a listviewHi anyone ! I have some problem with my listview. I read from database and find 10 items. I add them to listview and listview show 10 items. So... then I add one item to database and then i read database again, and find 11 items (i checked in debug mode). I add every each to the listview BUT, the listview just shows 10 items. (the one already there). Whats wrong ??? If i execute in debug mode the problems does not occur. Because it goes slower ?? or what ?? Anyone that have any ideas ? With Kind Regars Heino
-
Problem with refill of listview after removal in databaseThat's true...something else.... :-) Well , i will go thru my code again and see if i can find anything that could cause my problem. As you said earlier "...if the reader is created before.." in some way the problem "feels" like that. So i will check that possibility. Heino
-
Problem with refill of listview after removal in databaseOk , "tabortid" is just a remaining after that i removed the items by the selected items.index. But about the deletion, yes they are removed in the database. In debug-mode i do a hold, and then open the access-database and check the table....and they are gone. And really, i have a similar problem in an other place. When i add a item, when i refill the listview the new one is not added to the view, but be sure! ...it is in the database. So...i don't get it!
-
Problem with refill of listview after removal in databaseHi I have a listview with items. I select, for instance 2 items for removal. I run my code to remove in database, wich work just correct. Then i run my method for fill, in a class, to refill the listview from database. In the case where i selected 2 items only 1 disappered from the listview, the other is still showing. If i select 1 item, that one is still showing after the fill. I do not understand what happens. I rather new in C# but i have done the same in VB.NET and FoxPro 9.0 and i have no problems. Here is the code. Anybody that can tip me about whats wrong ? if (result == DialogResult.OK) { clsReadKatalog clsReadKatalog; clsReadKatalog = new clsReadKatalog(); foreach (int idx in this.Katalog.SelectedIndices) { String xid = this.Katalog.Items[idx].SubItems[5].Text; int tabortid = this.Katalog.Items[idx].Index; clsReadKatalog.TaBortPost(xid); // DELETE FROM DATABASE } String urval = null; urval = "SELECT * FROM pwd WHERE ownid=" + "'" + this.GlobalAnvändare + "'" + " AND posttyp='1'"; OdbcDataReader Reader = clsReadKatalog.LäsKatalog(urval); if (Reader.HasRows) { clsReadKatalog.FyllKatalog(Reader, this.Katalog); // REFILL FROM DATABASE } Here is the code for fill listview: This is the same method i run the first time, to fill the listview, before i make my selection for remove, and then it pick right from database. public void FyllKatalog(OdbcDataReader Reader,ListView Lista) { Lista.Items.Clear(); int x=0; while (Reader.Read()) { Lista.Items.Add(Convert.ToString(Reader["beskr"])); Lista.Items[x].SubItems.Add(Convert.ToString(Reader["anv"])); Lista.Items[x].SubItems.Add(Convert.ToString(Reader["pwd"])); Lista.Items[x].SubItems.Add(Convert.ToString(Reader["privatekey"])); Lista.Items[x].SubItems.Add(Convert.ToString(Reader["vektor"])); Lista.Items[x].SubItems.Add(Convert.ToString(Reader["id"])); x += 1; } Reader.Close(); } With Kind Regards Heino Heino Nurmik
-
Information from one pgm to anotherIt is just 2 fields, date and time. I never used a command line. Do you have any example ? By the way, they are in string format. Heino
-
Information from one pgm to another