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 IamaSherpa 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: *

  1. jigolo

    Change dependencies folder

    Yeah, I tried that, but after installation my app gives a FileNotFoundException... How do I tell the app.exe to check in the Lib folder for the dlls?
  2. jigolo

    Change dependencies folder

    When I installed my application using a setup project, all the dependencies are installed in the same folder. How can I move them to another folder ? from... MyApplication\app.exe MyApplication\1.dll MyApplication\2.dll MyApplication\3.dll MyApplication\4.dll to... MyApplication\app.exe...
  3. jigolo

    Browse for folder

    I could code my own but I don't want to spend the time to handle all exceptions and all shiny little images on the tree.
  4. jigolo

    question stocking data

    so if you are editing your languages in an editor program... with the 3 columns methods, you could use a textBox containing your text and a combobox containing your idLangage, changing your idLangage with the combobox. with the n+1 columns methods, you could use a textBox per language and use...
  5. jigolo

    question stocking data

    I am doing a traduction table in access, what is the best way to do it, I am thinking about 2 methods... 3 columns |code|languageId|text here you got 1 line per code per language n+1 columns, n:number of languages |code|english|french| ... here you got 1 line per code which one is the best...
  6. jigolo

    Browse for folder

    I want to do some kind of explorer to browse for folder... like System.Windows.Forms.FolderBrowserDialog, but I don't want it to be a dialog, I want a user control to put on my form, like explorer. I just want the damn tree in FolderBrowserDialog, any way I could take the TreeView?
  7. jigolo

    FPU bug

    Anyone found a good way to fix the fpu problem, from old printer drivers causing algorithm overflow. My program really has to print a document, so if I don't touch the fpu my c# prog crash, and if I fix the fpu, then the printer crash. I need a good fix because this program is used by many...
  8. jigolo

    Access mdb file hacking

    There are some programs to find mdb access bd password, anyone know what to do to secure an mdb file? My file has a big ascii password and is encrypted and it doesn't help.
  9. jigolo

    Mutex / lock() and win98

    I have an application using Mutex, working perflectly under winXp, but when I try under win98, the form freeze on mutex.WaitOne(), anyone ever used Mutex and win98?
  10. jigolo

    DataSource

    I have a ListBox displaying names, the DataSource is a DataTable ( code, name ), code is the ValueMember, name is the DisplayMember. when I change the name in a row of the DataTable, the ListBox is not displaying the new name. I tried refresh, update... what do I have to do to display the new...
  11. jigolo

    ComboBox

    I am sure there is a way to do it... I have a comboBox and a picture, I want to change the picture when the user is highlighting items in the opened comboBox, without using the SelectedIndex or Value because they are not yet set. Any idea?
  12. jigolo

    ComboBox

    how can I access the listBox in a comboBox, I want to put some event when a user is highlighting items?
  13. jigolo

    images pack file

    How can I create a file containing load of images on disk (like a .zip), then access the image I want in a c# app?
  14. jigolo

    Controls problem

    If I have a TabPage containing a user control displaying information, then creating others TabPages and adding the same user control to them, the user control moves to the new TabPage and I can't see it when I refresh the old TabPages. How can I refresh the user control when switching TabPages...
  15. jigolo

    Printed document margins identical to printPreview

    Is there an easy way to obtain margins identical in the printed version to those in the printPreview version? When I print my document, the left margin is larger than the printPreview version but the paper size fits perfectly.
  16. jigolo

    TreeView with indeterminate checkboxes...

    In my treeView, I want to change a checkbox node to indeterminate if not all the childs are checked. Any way to do it? because the Checked property is a bool and not a CheckState like a normal checkBox...
  17. jigolo

    memory

    Why does a simple c# program take so much memory, I mean a simple form with a label in it takes up to 15 000 Ko in my task manager... is it the task manager or what?
  18. jigolo

    regional option number

    how can I get the decimal symbol for the computer, ex: "." or "," when I use double to string.
  19. jigolo

    A design question...

    Any way to make a multi-languages application easily with c#, like switching from french to english, english to french without loads of refresh fonctions?
  20. jigolo

    Customize openFileDialog

    Is there any way to custom the openFileDialog class, I want to sort the files with my own columns instead of the default. I can't inherit from it or fileDialog and I am not gonna redo my own dialog, any one know how to customize it in c#?

Part and Inventory Search

Back
Top