Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
H

henur

@henur
About
Posts
20
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • FTP Server
    H henur

    Thanks for u reply !

    IT & Infrastructure sharepoint sysadmin windows-admin question announcement

  • FTP server [modified]
    H henur

    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

    C# sharepoint sysadmin windows-admin help question

  • FTP Server
    H henur

    Hi 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

    IT & Infrastructure sharepoint sysadmin windows-admin question announcement

  • FTP server [modified]
    H henur

    You have any help to give ? The application is written in C#

    C# sharepoint sysadmin windows-admin help question

  • FTP server [modified]
    H henur

    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

    C# sharepoint sysadmin windows-admin help question

  • Windows Media Player 11
    H henur

    Hmmmm....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

    C# tutorial question

  • Windows Media Player 11
    H henur

    Hi 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# tutorial question

  • C# Control for volume
    H henur

    I 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# csharp question

  • C# Control for volume
    H henur

    Ok..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

    C# csharp question

  • Get "current playing" movie/song in WMP
    H henur

    You 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# help tutorial

  • C# Control for volume
    H henur

    Ok , that could be an idea. I do not know how to use the SetStyle, but i will check that out. Thanks. Heino

    C# csharp question

  • Get "current playing" movie/song in WMP
    H henur

    The playing item could be found in: WMP.currentMedia.name Heino

    C# help tutorial

  • C# Control for volume
    H henur

    Hi 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

    C# csharp question

  • Problem with update of a listview
    H henur

    It'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

    C# database debugging help question announcement

  • Problem with update of a listview
    H henur

    Hi 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

    C# database debugging help question announcement

  • Problem with refill of listview after removal in database
    H henur

    That'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

    C# csharp database help question

  • Problem with refill of listview after removal in database
    H henur

    Ok , "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!

    C# csharp database help question

  • Problem with refill of listview after removal in database
    H henur

    Hi 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

    C# csharp database help question

  • Information from one pgm to another
    H henur

    It 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

    Visual Basic csharp xml question

  • Information from one pgm to another
    H henur

    Hi I have a VB.NET pgm which is reading 1,2,3... xml-files. For each xml-file, i wish to start another VB.NET pgm, WITH some information from newly read xml-file. How will i do this ?? Kind Regards Heino

    Visual Basic csharp xml question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups