Click here to Skip to main content
15,890,512 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Compare the structure for 2 sql server databases Pin
Eddy Vluggen10-Apr-15 10:27
professionalEddy Vluggen10-Apr-15 10:27 
GeneralRe: Compare the structure for 2 sql server databases Pin
dilkonika10-Apr-15 12:35
dilkonika10-Apr-15 12:35 
GeneralRe: Compare the structure for 2 sql server databases Pin
Eddy Vluggen11-Apr-15 8:49
professionalEddy Vluggen11-Apr-15 8:49 
Questionvb.net 2010 pass value to function Pin
dcof9-Apr-15 13:04
dcof9-Apr-15 13:04 
AnswerRe: vb.net 2010 pass value to function Pin
Richard MacCutchan9-Apr-15 21:53
mveRichard MacCutchan9-Apr-15 21:53 
AnswerRe: vb.net 2010 pass value to function Pin
Richard Deeming10-Apr-15 3:39
mveRichard Deeming10-Apr-15 3:39 
GeneralRe: vb.net 2010 pass value to function Pin
dcof10-Apr-15 4:12
dcof10-Apr-15 4:12 
QuestionVB6 TextBox truncates text in IE 11 Compatibility Mode Pin
Bill Cumming9-Apr-15 5:29
Bill Cumming9-Apr-15 5:29 
I'm maintaining code that has a VB6 TextBox as an ActiveX control running in an ASP .Net 2.x web app. For a host of reasons the web page has to run in Compatibility Mode or the ActiveX controls won't run in IE 10 + 11. But for this particular control I see the text in the multiline TextBox truncated to only the first character (and even that is slightly chopped off) at certain zoom factors (including 100%) in IE 10 and 11 in Compatibility mode. Runs fine in IE 9 and earlier. If I zoom the page it redraws fine at all zoom factors. But if I refresh the page, it fails again.

This gets more bizarre. The truncation is not just the text but the background fill as well. Only the upper left approx 10x10 px redraws.

I have tried to force the element to redraw itself using (see http://stackoverflow.com/questions/8840580/force-dom-redraw-refresh-on-chrome-mac):
var item = document.getElementById('myItem');
var sVal = item.style.display;
item.style.display = 'none';
item.style.display = sVal;

This works but ONLY if I use this code within my onKeyDown routine. It DOESN'T work if I call it in the window::onload routine. WTH?

I also tried setting item.runtimeStyle.visibility to 'hidden' and back to 'visible', but that didn't work at all.

Any suggestions on where I should look or what I should try?
Bill Cumming


modified 10-Apr-15 17:23pm.

QuestionRe: VB6 TextBox truncates text in IE 11 Compatibility Mode Pin
Richard Deeming9-Apr-15 7:08
mveRichard Deeming9-Apr-15 7:08 
AnswerRe: VB6 TextBox truncates text in IE 11 Compatibility Mode Pin
Bill Cumming9-Apr-15 7:15
Bill Cumming9-Apr-15 7:15 
QuestionWM that has to do with pressing the enter key and TAB key. Pin
dilkonika8-Apr-15 13:29
dilkonika8-Apr-15 13:29 
AnswerRe: WM that has to do with pressing the enter key and TAB key. Pin
CHill608-Apr-15 13:44
mveCHill608-Apr-15 13:44 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
dilkonika8-Apr-15 13:48
dilkonika8-Apr-15 13:48 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
CHill608-Apr-15 13:58
mveCHill608-Apr-15 13:58 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
dilkonika8-Apr-15 15:35
dilkonika8-Apr-15 15:35 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
CHill608-Apr-15 23:41
mveCHill608-Apr-15 23:41 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
dilkonika9-Apr-15 6:34
dilkonika9-Apr-15 6:34 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
dilkonika9-Apr-15 7:21
dilkonika9-Apr-15 7:21 
GeneralRe: WM that has to do with pressing the enter key and TAB key. Pin
CHill609-Apr-15 10:49
mveCHill609-Apr-15 10:49 
QuestionSelectedPath Property Pin
JKarov7-Apr-15 4:39
JKarov7-Apr-15 4:39 
AnswerRe: SelectedPath Property Pin
Richard Andrew x647-Apr-15 5:12
professionalRichard Andrew x647-Apr-15 5:12 
GeneralRe: SelectedPath Property Pin
JKarov7-Apr-15 5:15
JKarov7-Apr-15 5:15 
QuestionRe: SelectedPath Property Pin
Richard MacCutchan7-Apr-15 5:58
mveRichard MacCutchan7-Apr-15 5:58 
AnswerRe: SelectedPath Property Pin
JKarov7-Apr-15 8:28
JKarov7-Apr-15 8:28 
GeneralRe: SelectedPath Property Pin
Richard Deeming7-Apr-15 8:52
mveRichard Deeming7-Apr-15 8:52 

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.