Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: drey8
  • Content: Threads
  • Order by date
  1. drey8

    SourceSafeTypeLib Error on machines without .net 2005

    I am trying to deploy an application that uses the SourceSafeTypeLib to a machine that contains sourcesafe and the 2005 runtime. Bu I am getting the error bellow. I have no problem with machines with the full .net 2005. I already try to sign a strong name to the SourceSafeTypeLib (tlbimp...
  2. drey8

    download file from a virtual directory in windows forms

    I am using "once click" to deploy my application, and i am trying to display the icons from those applications, to show what is available. But i have no idea how to get the icon file form the the virtual directory. can any one help? drey
  3. drey8

    c# Listview subitem text wrap

    Does any one know how to wrap the text in a subitem? I have a list view with one subitem, which is a description of the item, sometimes it would be 3 to 4 lines. I would like all the text to show in the listview. thank you for your help drey
  4. drey8

    Shockwave and C#

    Does anyone have an example of how to use axShockwaveCtl or any example of how to play swf movies in a windows form. thank you drey
  5. drey8

    MainMenu DrawItem, items to the right disapears when item selected

    I am changing the background color of my main menu, but I am having a problem with the items to the right of the seleced item disapearing. I am including the code bellow. Does any one knows how to resolve this problem? Thank you MenuItem s = (MenuItem)sender ; string s1 = s.Text ...
  6. drey8

    problem with desirialization of a string. Please help...

    I have a problem with Deserializing a xml string. I have a object I serialize: MemoryStream buffer = new MemoryStream(); System.Xml.Serialization.XmlSerializer xmlSerializer = new System.Xml.Serialization.XmlSerializer(typeof(myobject)); xmlSerializer.Serialize(buffer, schedule); if I...
  7. drey8

    C# get excel Sheet Names

    I would like to know how to get the name of the excel sheets in a excel file using odbc driver? i do not want to open a excel object, since i have to process many files and the only information I need is the sheet name. thank you drey
  8. drey8

    Custom control property, Datacolumn problem

    I am having a hard time finding how to add a collection to a custom property. I am extending the treeview to be bound to a datasouce. i have a datasouce property ( datatable ) and i would like another property that allow me to choose the datacolumns i would like to use(from the datasouce above)...
  9. drey8

    treeview custom property problem

    am creating a databound treeview but i am having trouble with one property. I created a collection to hold labels. and i added to the designer. I can create the labels, however, i do not know how can i save it; I do not have a problem with the string and int properties, .net saves them in the...
  10. drey8

    Remove buttons from monthcalendar

    How can i hide or remove 1 or 2 of the buttons (next/previous month) in the MonthCalendar Control ? Is there a way to do it ? thank you
  11. drey8

    windows service problem

    I a windows application when i want to find the path my executable is in i use: System.Windows.Forms.Application.StartupPath; but in a service i do not have access to "Application". does any one knows how to get to the path? i have a xml schema i need to read in my executable path. thank you drey
  12. drey8

    help with CreateProcessWithLogonW

    I am using "CreateProcessWithLogonW" in my code. it works fine it runs the application as intended, up to the point that returns a process in code. My problem is: Since I am impersonating another user, Access to the process is denied. I need to add the "Exited" event to this process, but I keep...
  13. drey8

    help with html page!

    I have a windows application in c#. I am required to create an html file and save on a certain directory. At the moment I am writing the file using streamwriter. But I do have a problem with the images in the file in deployment. I notice that I have available in the add an item to project; to...
  14. drey8

    write pdf file to a cd burner

    I am having problems writing a file to a cd. I am using c# and i have windows XP. does any one have a code sample. thank you andreia
  15. drey8

    passing a string list as a parameter for a dataAdapter.

    I have a select statement in my dataadapter like this: select * from table1 where something in (:param2) and in my code a passing a parameter like this: da.SelectCommand.Parameters[0].Value = "'string1', 'string2'" I also tried: da.SelectCommand.Parameters[0].Value = "string1', 'string2" but...

Part and Inventory Search

Back
Top