Click here to Skip to main content
15,884,298 members
Home / Discussions / Web Development
   

Web Development

 
QuestionPDF content not rendering Pin
kc_krishnan30-Sep-08 22:56
kc_krishnan30-Sep-08 22:56 
AnswerRe: PDF content not rendering Pin
kc_krishnan1-Oct-08 4:59
kc_krishnan1-Oct-08 4:59 
QuestionASP .net app, and server side assembly that needs to read an XSL resource Pin
Braulio Dez30-Sep-08 19:57
Braulio Dez30-Sep-08 19:57 
QuestionHow to update a HTML textbox from a 'C' executable running in the background Pin
sccjazz130-Sep-08 16:20
sccjazz130-Sep-08 16:20 
AnswerRe: How to update a HTML textbox from a 'C' executable running in the background Pin
sccjazz13-Oct-08 16:02
sccjazz13-Oct-08 16:02 
QuestionInternet explorer and fire fox help :D Pin
JACENZ30-Sep-08 14:06
JACENZ30-Sep-08 14:06 
AnswerRe: Internet explorer and fire fox help :D Pin
Shog930-Sep-08 14:55
sitebuilderShog930-Sep-08 14:55 
QuestionHow to code file handling vb program to c#. Pin
abhichin30-Sep-08 8:50
abhichin30-Sep-08 8:50 
Imports System.IO

Public Class Form1

Dim f1 As New FileStream("d:\weexcel.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.Read)
Dim bw As New BinaryWriter(f1)
Dim br As New BinaryReader(f1)



Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim i As Integer = 1
While i <= 5
bw.Write(CStr(i))
i = i + 1
End While
br.BaseStream.Seek(1, SeekOrigin.Begin)
TextBox1.Text = br.ReadChars(10)


End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub
End Class
QuestionConditional operators Pin
t7bros30-Sep-08 3:51
t7bros30-Sep-08 3:51 
AnswerRe: Conditional operators Pin
NeverHeardOfMe30-Sep-08 5:16
NeverHeardOfMe30-Sep-08 5:16 
GeneralRe: Conditional operators Pin
t7bros30-Sep-08 6:45
t7bros30-Sep-08 6:45 
QuestionA connection could not be made to the report server http://localhost/reports$SQLExpress Pin
hifiger200429-Sep-08 21:47
hifiger200429-Sep-08 21:47 
QuestionHow to get Value from Drop Down List (SELECT)? Pin
FishiFishi29-Sep-08 2:36
FishiFishi29-Sep-08 2:36 
AnswerRe: How to get Value from Drop Down List (SELECT)? Pin
SomeGuyThatIsMe29-Sep-08 8:31
SomeGuyThatIsMe29-Sep-08 8:31 
QuestionHTML Emails Outlook 2007 (Shudder...) Pin
markymark8228-Sep-08 23:24
markymark8228-Sep-08 23:24 
AnswerRe: HTML Emails Outlook 2007 (Shudder...) Pin
NeverHeardOfMe29-Sep-08 4:48
NeverHeardOfMe29-Sep-08 4:48 
GeneralRe: HTML Emails Outlook 2007 (Shudder...) [modified] Pin
markymark8229-Sep-08 5:02
markymark8229-Sep-08 5:02 
QuestionPHP IMPORT EXPORT Pin
w20927-Sep-08 19:14
w20927-Sep-08 19:14 
AnswerRe: PHP IMPORT EXPORT Pin
Mohammad Dayyan27-Sep-08 19:50
Mohammad Dayyan27-Sep-08 19:50 
GeneralRe: PHP IMPORT EXPORT Pin
w20927-Sep-08 19:55
w20927-Sep-08 19:55 
QuestionPass variable in iFrame Pin
gm8727-Sep-08 16:10
gm8727-Sep-08 16:10 
AnswerRe: Pass variable in iFrame Pin
NeverHeardOfMe30-Sep-08 5:27
NeverHeardOfMe30-Sep-08 5:27 
GeneralRe: Pass variable in iFrame Pin
gm872-Oct-08 3:33
gm872-Oct-08 3:33 
Questionquerying data from mysql using php Pin
Abdul Rahman Hamidy27-Sep-08 8:32
Abdul Rahman Hamidy27-Sep-08 8:32 
AnswerRe: querying data from mysql using php Pin
Johnny ²27-Sep-08 8:55
Johnny ²27-Sep-08 8:55 

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.