Click here to Skip to main content
15,914,074 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: problem accessing remote database. Pin
Shameel24-Nov-09 2:15
professionalShameel24-Nov-09 2:15 
Questionresize form and controls according to Screen resolutions Pin
εїзεїзεїз22-Nov-09 21:03
εїзεїзεїз22-Nov-09 21:03 
AnswerRe: resize form and controls according to Screen resolutions Pin
Natza Mitzi22-Nov-09 21:36
Natza Mitzi22-Nov-09 21:36 
GeneralRe: resize form and controls according to Screen resolutions Pin
εїзεїзεїз22-Nov-09 21:47
εїзεїзεїз22-Nov-09 21:47 
GeneralRe: resize form and controls according to Screen resolutions Pin
Natza Mitzi23-Nov-09 0:58
Natza Mitzi23-Nov-09 0:58 
AnswerRe: resize form and controls according to Screen resolutions Pin
dan!sh 22-Nov-09 21:41
professional dan!sh 22-Nov-09 21:41 
QuestionAdvise regarding rich text or xml/xslt editing Pin
tienus20-Nov-09 1:06
tienus20-Nov-09 1:06 
QuestionDisplay error of FolderBrowserDialog on Windows Server 2008 Pin
Caloiv17-Nov-09 23:37
Caloiv17-Nov-09 23:37 
Hi All,

I have a problem with the FolderBrowserControl. When I use the FolderBrowserDialog in my application on a Windows Server 2008 system a strange behaviour can be recognized. If I open the dialog the first time it is displayed the way it should.
When I open it a second time, the tree control looks different. The plus signs aren't displayed any longer. Instead only blank squares are displayed (Sorry for not attaching a picture. But I don't have a server where I could put it...)
This behaviour can't be reproduced on Windows XP, it only occurs on Windows Server 2008 systems.
The control is created in a separate class and is opend from a grid.


//as special folder the desctop is used
public MyControl(Environment.SpecialFolder folder, bool createFolder)
{

m_IsModified = false;
m_FolderBrowser = new WinForms.FolderBrowserDialog();
m_FolderBrowser.ShowNewFolderButton = createFolder;
}

//this method is executed from the grid
public WinForms.DialogResult ShowDialog(WinForms.IWin32Window window)
{
WinForms.DialogResult ret = m_FolderBrowser.ShowDialog(window);
m_IsModified = (ret == WinForms.DialogResult.OK);

return ret;
}


public void Dispose()
{
m_FolderBrowser.Dispose();
m_FolderBrowser = null;
}

I really don't have any idea why this problem occurs and how to solve it. I hope you can help me.
Thanks.

Best Regards,
Viola
AnswerRe: Display error of FolderBrowserDialog on Windows Server 2008 Pin
Shameel24-Nov-09 2:19
professionalShameel24-Nov-09 2:19 
GeneralRe: Display error of FolderBrowserDialog on Windows Server 2008 Pin
Caloiv25-Nov-09 6:17
Caloiv25-Nov-09 6:17 
QuestionDrag Drop of controls in .net Pin
S.Aijaz17-Nov-09 0:36
S.Aijaz17-Nov-09 0:36 
AnswerRe: Drag Drop of controls in .net Pin
Nuri Ismail17-Nov-09 0:42
Nuri Ismail17-Nov-09 0:42 
AnswerRe: Drag Drop of controls in .net [modified] Pin
Shameel17-Nov-09 4:06
professionalShameel17-Nov-09 4:06 
AnswerRe: Drag Drop of controls in .net Pin
Natza Mitzi22-Nov-09 21:44
Natza Mitzi22-Nov-09 21:44 
QuestionGolly! Why Won't My Form Design? I know I am being retarded about this but I can't figure out how! Pin
Brian C Hart16-Nov-09 4:41
professionalBrian C Hart16-Nov-09 4:41 
QuestionGridView Pin
moody12314-Nov-09 23:11
moody12314-Nov-09 23:11 
AnswerRe: GridView Pin
Shameel17-Nov-09 22:24
professionalShameel17-Nov-09 22:24 
QuestionCheckedListBox question Pin
machallo13-Nov-09 3:14
machallo13-Nov-09 3:14 
AnswerRe: CheckedListBox question Pin
Shameel17-Nov-09 4:38
professionalShameel17-Nov-09 4:38 
Questionlistbox question Pin
loyal ginger12-Nov-09 10:51
loyal ginger12-Nov-09 10:51 
AnswerRe: listbox question Pin
Luc Pattyn12-Nov-09 12:03
sitebuilderLuc Pattyn12-Nov-09 12:03 
GeneralRe: listbox question Pin
loyal ginger12-Nov-09 14:46
loyal ginger12-Nov-09 14:46 
GeneralRe: listbox question Pin
Shameel17-Nov-09 4:41
professionalShameel17-Nov-09 4:41 
GeneralRe: listbox question Pin
Shameel17-Nov-09 4:40
professionalShameel17-Nov-09 4:40 
QuestionChange of text color in PropertyGrid Pin
Member 133012112-Nov-09 0:19
Member 133012112-Nov-09 0:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.