Click here to Skip to main content
15,923,273 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Custom Activity Within ASP.Net Site Pin
Shameel20-Oct-09 4:38
professionalShameel20-Oct-09 4:38 
QuestionTelnet using VB.net Pin
VikashGohil2-Oct-09 20:41
VikashGohil2-Oct-09 20:41 
QuestionPop sizing using timers Pin
lbs.allies1-Oct-09 20:43
lbs.allies1-Oct-09 20:43 
AnswerRe: Pop sizing using timers Pin
vedprakash2-Oct-09 1:36
vedprakash2-Oct-09 1:36 
GeneralRe: Pop sizing using timers Pin
Dave Kreskowiak2-Oct-09 7:10
mveDave Kreskowiak2-Oct-09 7:10 
GeneralRe: Pop sizing using timers Pin
lbs.allies4-Oct-09 19:16
lbs.allies4-Oct-09 19:16 
AnswerRe: Pop sizing using timers Pin
Dave Kreskowiak2-Oct-09 7:13
mveDave Kreskowiak2-Oct-09 7:13 
GeneralRe: Pop sizing using timers Pin
lbs.allies4-Oct-09 19:29
lbs.allies4-Oct-09 19:29 
i used tried like tis

Private Sub PictureEdit1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureEdit1.MouseHover

Dim PicPath As System.Drawing.Image = PictureEdit1.Image
PictureEdit2.Image = PicPath
PopupContainerControl1.SetBounds(Control.MousePosition.X, Control.MousePosition.Y, 0, 0)
Timer1.Start()
Timer1.Interval = 3000
End Sub

Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim i As Integer
For i = 0 To 200
If Not i = 200 Then
PopupContainerControl1.Size = New Size(i, i)
PopupContainerControl1.Show()
Else
Timer1.Stop()
End If
Next

End Sub


But popup was shown at the end and not from the intial size so it didnt looked animated...i am not familiar with timers pls help me
GeneralRe: Pop sizing using timers Pin
lbs.allies4-Oct-09 19:46
lbs.allies4-Oct-09 19:46 
GeneralRe: Pop sizing using timers Pin
Dave Kreskowiak5-Oct-09 2:11
mveDave Kreskowiak5-Oct-09 2:11 
Questionhow to get the complete response for a webservice created using .net Pin
prasadbuddhika1-Oct-09 17:50
prasadbuddhika1-Oct-09 17:50 
AnswerRe: how to get the complete response for a webservice created using .net Pin
Petr Pechovic4-Oct-09 12:05
professionalPetr Pechovic4-Oct-09 12:05 
Questiontext file spliting Pin
digitaldxb1-Oct-09 10:25
digitaldxb1-Oct-09 10:25 
AnswerRe: text file spliting Pin
freakyit1-Oct-09 11:49
freakyit1-Oct-09 11:49 
GeneralRe: text file spliting Pin
digitaldxb1-Oct-09 21:13
digitaldxb1-Oct-09 21:13 
AnswerRe: text file spliting Pin
PIEBALDconsult1-Oct-09 15:08
mvePIEBALDconsult1-Oct-09 15:08 
GeneralRe: text file spliting Pin
digitaldxb1-Oct-09 21:14
digitaldxb1-Oct-09 21:14 
GeneralRe: text file spliting Pin
PIEBALDconsult2-Oct-09 3:49
mvePIEBALDconsult2-Oct-09 3:49 
GeneralRe: text file spliting Pin
digitaldxb2-Oct-09 6:48
digitaldxb2-Oct-09 6:48 
GeneralRe: text file spliting Pin
shree08813-Oct-09 18:14
shree08813-Oct-09 18:14 
GeneralRe: text file spliting Pin
shree08813-Oct-09 18:14
shree08813-Oct-09 18:14 
QuestionHow to write and read HttpWebRequestStream asynchronously Pin
vsaratkar1-Oct-09 9:28
vsaratkar1-Oct-09 9:28 
QuestionHow to Edit crystal report SQL Query shown in 'Show SQL Query' Pin
she-Developer30-Sep-09 23:34
she-Developer30-Sep-09 23:34 
QuestionIndex was outside the bounds of the array while performing Stack.Pop operation Pin
Furqan Safdar30-Sep-09 1:21
Furqan Safdar30-Sep-09 1:21 
AnswerRe: Index was outside the bounds of the array while performing Stack.Pop operation Pin
Henry Minute30-Sep-09 2:23
Henry Minute30-Sep-09 2:23 

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.