Search results for query: *

  1. A

    displaying an external website inside a frame

    Hi Lipton, Add an IFrame and point the src to the page which is running the reports. Or from the code-behind you can point it like this IFrameName.Attributes.Add("src","http://www.somedomain.com/reportpage.aspx") Hope this helps. Regards, Vikrant.
  2. A

    Calling sub from another form

    Got your point JohnH , I couldn't get these from books.........Nice discusiing with u.......... Btw, is there anyway we can see memory used dynamically while debugging Like we see threads, Command , Autos and local at debug mode
  3. A

    Calling sub from another form

    Hi bmackkc and JohnH, thanx for your reply bmackkc,Thanx johnHfor ur code, I went thro' it and it is cool,but , I got a doubt here with the line Above code gets tightly coupled with frmReturn and I would like to raise the following doubts 1. Won't casting cause resources? 2. If interfaces are...
  4. A

    Calling sub from another form

    Hi JohnH, Thanx for your reply, Can you please enlighten me with sample code, so that I can learn it.
  5. A

    Calling sub from another form

    Use interface to refresh parent form Hi bmackkc, You have to use Interface to refresh the parent form(frmReturn) from the child form(frmReturnItem) 1. Declare an interface with a subroutine to refresh datagrid 2.In frmReturnItem,declare a new variable and make a new...
  6. A

    How many emails can I send in a single shot using VB 2005?

    Hi, I'm doing a project based on MS Excel 2003 and VSTO 2005. A specific task in my project includes sending bulk email (not spam). I do know how to send email using VB 2005 and I got a trick that by concatenating email IDs to BCC( for ex: - BCC = bcc1@bcc.com;bcc2@bcc.com;bcc3@bcc.com; ....' n'...
  7. A

    problem with update sql statement.

    I think you are missing column name in WHERE clause .It should be like UPDATE msg SET topicID =(SELECT thread.topicID FROM thread WHERE thread.userID = msg.userID) WHERE <some colum name= or in> (SELECT thread.topicID FROM thread WHERE thread.userID = msg.userID)", cn)
  8. A

    a way to reuse query results for multiple object populations?

    You can store the Dataset in a Session Varaible http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vbCode/html/vbtskCodeCachingDatasetVisualBasic.asp
  9. A

    (system) Variable that holds the record count of a result set?

    Dataset Row Count I assume that you know how to fill a dataset.After filling the dataset please code the following line Dim TotalCount as Integer = DataSetName.Tables(0).Rows.Count
  10. A

    Runtime Error when upload my file

    Hi Nikhiljain, Please use Terminal Service Client to login to your remote server and browse the URL in the client itself.You can see the exact error by loging into Terminal Service Client.By the way, are you sure that you created a virtual directory for your ASP.NET application
  11. A

    Calling Stored Proc in MySQL ....gives me an headache already!

    Hi ramnujs, why don't you use Mysql DOtNET connector instead of Mysql ODBC connector.MysqlDotNet Connector works exactly like SQlConnector.For more info, please search google for Mysql Dot Net COnnector.
Back
Top