active questions tagged vb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T06:28:19Zhttp://stackoverflow.com/feeds/tag/vbhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1421038/textchanged-event-is-not-firing-when-using-jscript0Textchanged event is not firing when using jscriptNandu2009-09-14T11:39:48Z2009-12-05T07:31:41Z
<p>hi guys,</p>
<p>In my asp.net application, i am using a lookup to enter data to a textbox.For making lookup i have used jscript.I have a button for this lookup from which i am entering data to this textbox.so, i am not entering values directly to the textbox.After entering values to textbox, the textchanged event is not working.What could be the reason?</p>
http://stackoverflow.com/questions/66117/asp-net-common-gotchas8ASP.NET - Common GotchasThunder32008-09-15T19:43:55Z2009-11-30T16:48:29Z
<p>When I am working with ASP.NET, I find that there are always unexpected things I run into that take forever to debug. I figure that having a consolidated list of these would be great for those "weird error" circumstances, plus to expand our knowledge of oddness in the platform.</p>
<p>So: answer with one of your "Gotcha"s!</p>
<p>I'll start:
Under ASP.NET (VB), performing a Response.Redirect inside a try/catch block does not stop execution of the current Response, which can lead to two concurrent Responses executing against the same Session.</p>
http://stackoverflow.com/questions/1792378/iis7-parse-error0IIS7 parse error. seina2009-11-24T19:30:12Z2009-11-24T19:36:47Z
<p>I just put all my aspx files on the local folder and made a website in IIS7. I added a virtual directory to it and then converted the virtual directory to application. The website loads properly but when i click the link that calls my application i get this error message.</p>
<p>Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. </p>
<p>Parser Error Message: Could not load type 'XXXX.xxxx'.</p>
<p>The error line in code is this -</p>
<p>Line 1: <%@ Master Language="VB" Inherits="_XXXX.xxxx" Codebehind="XXX.xx.vb" %></p>
<p>How do i fix this?</p>
http://stackoverflow.com/questions/1368477/how-to-draw-a-graph-visual-cirular-nodes-and-lines-as-connections-in-visual-bas0How to draw a graph (visual cirular nodes and lines as connections) in Visual Basic?Aditya2009-09-02T15:41:04Z2009-11-23T06:00:02Z
<p>The problem is I have 10 nodes(say) and there are some connections between them. Now I want to draw a visual graph depicting the above with circles as nodes and lines as connections between them. My problem is what is the algorithm for placement of nodes on screen, say we have drawn one circle, then the other circle should be drawn as non-overlapping as possible. Please explain.</p>
http://stackoverflow.com/questions/1832924/how-do-you-declare-a-c-variable-into-an-html-type-variable0How do you declare a C# variable into an HTML type variable?pageman2009-12-02T13:31:25Z2009-12-02T13:37:05Z
<p>What's the C# equivalent of</p>
<p><% dim name %></p>
<p>so you can use it for web forms in PayPal API integration?</p>
http://stackoverflow.com/questions/1208655/downloading-more-than-one-file-from-a-web-server0Downloading more than one file from a web serverrobUK2009-07-30T19:03:28Z2009-11-27T00:00:06Z
<p>Hello,</p>
<p>VS 2008 SP1</p>
<p>I am using the web client to download a file. Which works ok.</p>
<p>However, now I have to download many and the number of files to download will change everyday.</p>
<p>I am not sure how I can get the web client to know which files have been downloaded or not? I was thinking of using a for loop to download each file. But I will never know how many there are to download?</p>
<p>The web client could download the same file twice?</p>
<p>Many thanks for any suggestions,</p>
<pre><code>Private Sub btnStartDownload_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim client As New WebClient()
AddHandler client.DownloadProgressChanged, AddressOf client_DownloadProgressChanged
AddHandler client.DownloadFileCompleted, AddressOf client_DownloadFileCompleted
' Starts the download
client.DownloadFileAsync(New Uri("UrlFilePath"), "DownloadPath")
btnStartDownload.Text = "Download In Process"
btnStartDownload.Enabled = False
End Sub
</code></pre>
http://stackoverflow.com/questions/1781832/ssis-how-can-i-insert-a-blank-date-to-database-with-visual-basic0SSIS how can i insert a blank date to database with visual basicsimone2009-11-23T08:41:44Z2009-11-23T19:00:29Z
<p>Hi all, how can i insert a blank date to sql database in ssis working with a visual basic script component?
I have to transfer date from excel to database and i would like to insert a blank or null value in the database if in the excel is empty</p>
<p>thanks</p>
http://stackoverflow.com/questions/1841360/vb-syntax-for-linq-query-that-creates-a-new-set0VB Syntax for LINQ query that creates a new{} set?Chris Chubb2009-12-03T17:04:16Z2009-12-03T17:16:06Z
<p>I am trying to AVERAGE 6 different fields on a DataTable, but without grouping. Just the AVERAGE. I have found a couple of examples in C#, but can't find any examples for how to do this in VB. Can someone please help me convert the syntax?</p>
<p>Here is what I have so far:</p>
<pre><code>Dim query = From dtRow In dtIn.AsEnumerable _
Where dtRow.Field(Of String)("FOLLOWUP") = "Alert" _
Select New With { _
.Brand_Functional_Avg = XXX.Average(Function(f) f("Brand_Functional")), _
.Brand_Personal_Avg = XXX.Average(Function(f) f("Brand_Personal")) _
}
</code></pre>
<p>What should I use for XXX? I tried all of the options that I could think of and nothing is compiling. </p>
<p>Trust me, if I could write this in C#, I would, but the project requires VB. </p>
http://stackoverflow.com/questions/1004171/loop-through-listbox-in-vb-net-or-c-and-set-values-to-label-text1Loop Through Listbox in VB.net or C# and Set Values to Label Text?Josh streit2009-06-16T21:55:57Z2009-11-28T07:15:45Z
<p>I have items in a listbox control that I would like to repeatedly (when it gets to the last one, repeat) loop through and set the text to a label.</p>
<p>I'm stuck, please help!</p>
http://stackoverflow.com/questions/1787261/visual-basic-2008-connection-to-sql-server-compact-3-50visual basic 2008 connection to sql server compact 3.5 studentnoob357832009-11-24T01:35:50Z2009-11-24T02:20:20Z
<p>i'm a beginner user of microsoft visual studio 2008 and i want ask of what would be the initial code to connect a visual basic 2008 form to a sql server compact 3.5. i want to create an add new account program using the above applications. </p>
http://stackoverflow.com/questions/1768384/data-report-in-vb-6-00Data report in VB 6.0krishna2009-11-20T04:43:02Z2009-11-20T05:09:05Z
<p>I'm using data report in VB 6 and trying to display images from database. It retrieves the image but showing the same image for all output
the code i'm using are given below</p>
<pre><code>Dim rs As ADODB.Recordset, rs1 As ADODB.Recordset
Dim a As String
k = 0
i = 0
j = 0
k = 0
Set rs = New ADODB.Recordset
With rs
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.ActiveConnection = conn
.Source = "SELECT patientid FROM Inpatients_Maintenance WHERE (ModDate >= '" & frmDate & "') AND (ModDate <= '" & endDate & "')"
.CursorLocation = adUseClient
.Open
Do Until rs.EOF
If (rs.EOF = False And rs.BOF = False) Then
pid(i) = rs.Fields(0).Value
End If
i = i + 1
rs.MoveNext
Loop
End With
Set rs = Nothing
Set rs1 = New ADODB.Recordset
Dim id As String
With rs1
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.ActiveConnection = conn
For j = 0 To i - 1
id = pid(j)
.Source = "Select photo from patientImage where patientid='" & id & "'"
.CursorLocation = adUseClient
.Open
If (rs1.EOF = False And rs1.BOF = False) Then
p(j) = App.Path + "\patients\" + rs1.Fields(0).Value
a = p(j)
Set RptInpatientMaster.Sections("Section1").Controls("Image2").Picture = LoadPicture(a)
End If
.Close
Next j
End With
</code></pre>
http://stackoverflow.com/questions/1844864/trying-to-add-element-to-array-with-visual-basic0Trying To Add Element To Array With Visual Basicgerbilburp2009-12-04T04:28:46Z2009-12-05T07:08:26Z
<p>Hello, Using 3.5 VB1 framework.net</p>
<p>I'm trying to add an element to an array</p>
<p>i would like to clear the listbox and display the array contents in listbox. </p>
<p>then add another button, then add an element to the array, from the textbox.</p>
<p>Ive created this painstakingly for the past 6 hours</p>
<pre><code>Call clearout() ''===== Clears listbox
Dim MyNumbers(4) As Integer
Dim i As Integer
MyNumbers(0) = 1
MyNumbers(1) = 2
MyNumbers(2) = 3
MyNumbers(3) = 4
MyNumbers(4) = 5
For i = 0 To 4
ListBox1.Items.Add(MyNumbers(i))
Next i
</code></pre>
<p>That part works great!</p>
<p>It plops it right into listbox and deletes any previous entries into listbox
What Ive studied so far after all these hours to make the next button is to use UBound function to find the highest element then add one to it and ReDim it with that value</p>
<p>Problem is I'm not sure how to write that correctly under the second button</p>
<p>Any help?</p>
http://stackoverflow.com/questions/1820376/datasourceview-executeupdate-with-gridview0DataSourceView.ExecuteUpdate with GridViewTim2009-11-30T15:08:43Z2009-11-30T15:22:23Z
<p>I'm defining my own DataSourceControl and DataSourceView.</p>
<p>The load and display of collection in the GridView works perfectly, however, when I click Update (after clicking Edit to Edit a row), the values collection which comes through as the second parameter to ExecuteUpdate in my DataSourceView is populated with the old values as is oldvalues collection.</p>
<p>Anybody experienced similar issues, or is there something I am missing?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1790599/isdate-control-on-european-data-in-vb-net0isDate control on european data in vb.netsimone2009-11-24T14:55:35Z2009-11-24T15:45:18Z
<p>How can i do a isDate() control on a date like 16/01/2008 in vb.net?</p>
http://stackoverflow.com/questions/1771184/what-is-the-vb-equivalent-of-this-c-syntax-dealing-with-delegates2What is the VB equivalent of this C# syntax, dealing with delegates?Cheeso2009-11-20T15:24:12Z2009-11-20T19:47:41Z
<p>Is it possible to translate the following C# code into VB.NET, using VB 9.0?</p>
<pre><code>delegate Stream StreamOpenerDelegate(String name);
void Exec1()
{
WorkMethod( x => File.OpenRead(x));
}
void Exec2()
{
StreamOpenerDelegate opener = x => return File.OpenRead(x) ;
WorkMethod(opener);
}
</code></pre>
<p>Can I do something like this?:</p>
<pre><code>Private Delegate Function StreamOpenerDelegate(ByVal name As String) As Stream
Private Sub WorkMethod(ByVal d As StreamOpenerDelegate)
''
End Sub
Private Sub Exec1()
Me.WorkMethod(Function (ByVal x As String)
Return File.OpenRead(x)
End Function)
End Sub
Private Sub Exec2()
Dim opener As StreamOpenerDelegate = Function (ByVal x As String)
Return File.OpenRead(x)
End Function
Me.WorkMethod(opener)
End Sub
</code></pre>
<p>I'm trying to write some documentation, but I don't know VB syntax. Often I use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to translate it, but I'm not sure it's working in this case. I'm also not clear on where I would need line continuation characters.</p>
<p><hr></p>
<p><strong>ANSWER</strong><br>
In VB9, it's not possible to have multi-line lambdas (or Sub lambdas, which I did not ask about). In VB9, all lambdas return a value, and must be a single expression. This changes in VB10. VB10 will allow the above syntax, but VB9 will not. In VB9, if the logic involves multiple code lines, it must not be a lambda; you must put it into a named Function and reference it explicitly. Like this:</p>
<pre><code>Private Delegate Function StreamOpenerDelegate(ByVal name As String) As Stream
Private Sub WorkMethod(ByVal d As StreamOpenerDelegate)
''
End Sub
Function MyStreamOpener(ByVal entryName As String) As Stream
'' possibly multiple lines here
Return File.OpenRead(entryName)
End Function
Private Sub Exec1()
Me.WorkMethod(AddressOf MyStreamOpener)
End Sub
</code></pre>
<p>cite: <a href="http://cs.vbcity.com/blogs/mike-mcintyre/archive/2009/10/05/visual-basic-2010-multiline-sub-lambdas.aspx" rel="nofollow">Mike McIntyre's blog</a></p>
http://stackoverflow.com/questions/1744444/auto-ftp-from-a-directory0Auto FTP from a DirectoryTony Borf2009-11-16T19:49:49Z2009-12-03T14:01:26Z
<p>I want to monitor a directory and FTP any files that are place there to an FTP location. does anyone know how to do this in c#? </p>
<p>Thanks</p>
<p>EDIT: Anyone know of a good client that can monitor a directory and FTP and files placed in it?</p>
http://stackoverflow.com/questions/1808008/can-i-implement-code-snippets-at-runtime-in-vb0Can I implement code snippets at runtime in vb?SM2009-11-27T10:41:02Z2009-11-27T10:46:38Z
<p>I need to port an old Clipper app to vb.net. It relies heavily on user-written macros and indeed would be almost impossible to create without them. As VB is interpreted, I am sure it must be possible to implement code that the user has entered, but I have no idea how to do so!</p>
<p>For example, I might have a text field txtMacro, into which my user enters "iif(mid(txtA,2,3) = "ABC", "alphabet", "no alphabet")". I would like to have code in my app like this:</p>
<p>strResult = @txtMacro</p>
<p>where @ is some method of implementing the code in txtMacro.</p>
http://stackoverflow.com/questions/327138/rewriting-embedded-visual-basic-app1Rewriting eMbedded Visual Basic appBen Daniel2008-11-29T03:56:01Z2009-11-23T20:59:28Z
<p>I'm looking at rewriting an eMbedded Visual Basic app I wrote years ago. I'm unsatisified with it because of various problems clients keep having with it now and then over the years, mostly along the lines of the app not loading anymore because a required dll/activex control has gone missing! This is so frustrating and naturally difficult to debug when a client is using it far away. In alot of cases reinstalling the app doesn't fix the problem.</p>
<p>My preference would be to rewrite it in C# since I'm comfortable with C# and DotNet, but I'm also open to other platforms like blackberry or iTouch/iPhone so long as the platform can support maps and GPS. I'd start rewriting it in C# now but I can't be sure that I won't have the same problems in .net.</p>
<p>Has anyone else had similar problems with eVB apps which have gone away/persisted when moving to CF DotNet? Or would you suggest a different platform again?</p>
<p>Edit: Note that I wish to move away from eVB anyway, but if I move to CF DotNet I want to make sure I won't have the same missing dll/control problems.</p>
http://stackoverflow.com/questions/1375728/prevent-powerpoint-from-pausing-when-focus-is-lost0Prevent Powerpoint from pausing when focus is lostgreat_llama2009-09-03T20:23:39Z2009-11-20T02:00:03Z
<p>I've written an app that allows me to start multiple Powerpoint presentations, each on its own monitor (this particular config has 4 monitors). The problem I have now is that only the presentation that has focus has any animation. The other 3 pause until they receive focus via mouse click.</p>
<p>Is there any way to keep this pause behavior from happening? (trick Powerpoint into thinking that all 4 retain focus, or anything else to accomplish 4 simultaneously animated presentations...)</p>
http://stackoverflow.com/questions/1845874/use-ifilter-from-vb0Use IFilter from VBTodd Owen2009-12-04T09:34:15Z2009-12-04T14:09:59Z
<p>I am using VBA (in Access 2003) and I'd like to use the IFilter mechanism to extract the textual contents of files. I found some some nice C++ <a href="http://the-lazy-programmer.com/blog/?p=8" rel="nofollow">sample code</a> which makes it look relatively easy, but at the moment I can't even get the DLL call to <a href="http://msdn.microsoft.com/en-us/library/ms691002%28VS.85%29.aspx" rel="nofollow">LoadIFilter</a> to work:</p>
<pre><code>Declare Function LoadIFilter Lib "query.dll" (ByVal pwcsPath As String, _
ByVal pUnkOuter As Object, ByRef ppIFilter As Object) As Integer
Public Sub DocEx()
Dim ifilter As Object
Dim hresult As Integer
hresult = LoadIFilter("C:\temp\test.txt" & Chr(0), Nothing, ifilter)
Debug.Print hresult
End Sub
</code></pre>
<p>hresult is always E_FAIL (= 16389).</p>
<p>Is it my syntax for the DLL that is incorrect, or something else?</p>
http://stackoverflow.com/questions/1818910/i-need-a-vb-code-to-remove-the-zero-valuesdata-values-on-varous-pivot-charts0I need a VB code to remove the zero values(Data values) on varous pivot chartsAngeleyes2009-11-30T10:05:58Z2009-11-30T10:15:35Z
<p>I have about 12 pivot charts and I need help to creat a VB code that will delete only the zero values(Data values) on all the Pivot chart. These are Stacked charts for 3 metrics. eg : Ontime, late and not notified. I need only the values which are not "0" to reflect on the pivot charts.Please help.</p>
http://stackoverflow.com/questions/1735611/asp-page-displaying-old-request1ASP page displaying old request.ferrari fan2009-11-14T21:11:53Z2009-11-24T14:38:58Z
<p>I have an ASP.net page which has fields for filtering a dataset. When I apply the filter (through a button), the results load fine. If I navigate to another page (on the same session), and then come back to the page, I'm re-setting the value of the filter fields on page load. </p>
<p>Sometimes, the fields will reset fine, sometimes they will come back blank. There doesn't seem to be any real pattern as to when they come back ok and when they come back blank. Is there a possibility that the request/response is being cached by the server? (IIS), if not, then what could be the problem?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1771476/transform-date-represented-as-string-to-date-in-visual-basic1Transform date represented as String to Date in Visual Basicsimone2009-11-20T16:04:18Z2009-11-20T17:29:04Z
<p>I am using <a href="http://en.wikipedia.org/wiki/SQL%5FServer%5FIntegration%5FServices" rel="nofollow">SSIS</a> and I need to transform a date.
How can I transform a date in String format (e.g. 14/09/1980) to the same but in date format in VB.NET?</p>
<p>I would like the datetime format to insert it into a SQL database.</p>
http://stackoverflow.com/questions/579209/how-can-i-initiate-a-remote-assistance-session-in-net0How can I initiate a Remote Assistance session in .NET?Roger2009-02-23T20:34:13Z2009-12-06T05:00:08Z
<p>I'm writing a help desk application and would like to allow my users to initiate a Remote Assistance session on a remote PC. This can be done via Help in Windows XP, but I haven't been able to find any code sample in .NET. Thanks!</p>
http://stackoverflow.com/questions/1824048/pulling-images-from-rss-feed0Pulling Images from RSS FeedLuke2009-12-01T04:42:38Z2009-12-01T04:45:20Z
<p>I am developing a background wallpaper changer for Windows. I am looking into pulling images from RSS feeds. As how they are displayed from feed to feed changes, I am currently pulling the page as text and searching for text such as <code>"<img src="...</code> and others. Obviously this is not a viable option, how else could I complete this?</p>
http://stackoverflow.com/questions/1790665/msvs-solution-file-generator1MSVS solution file generator?Dandikas2009-11-24T15:05:56Z2009-11-25T02:23:27Z
<p>I'm looking for a simple tool, that accepts a path, scans folders, and creates a solution (sln) file with all the projects found.</p>
<p>Setting project dependencies automatically would be a big plus for the tool from me.</p>
<p>I know it is simple to write the thing, but there must be plenty of "little helper tools" out there that can do the job for me :)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1781724/best-translation-method-asp-net-vs20081Best Translation method - ASP.NET VS2008David Bonnici2009-11-23T08:11:11Z2009-11-23T08:18:14Z
<p>Currently I am doing a CMS and I want to include multi language support. What do you suggest?</p>
http://stackoverflow.com/questions/1826684/fire-an-event-every-second0Fire an event every secondLantisGaius2009-12-01T14:51:50Z2009-12-01T15:32:16Z
<p>Quick question:</p>
<p>I need an event that fires every second, just like the timer1_timer() event of VB6. I'm using VB9/Silverlight, creating a small sidebar gadget.</p>
<p>Thanks in advance~</p>
http://stackoverflow.com/questions/1801720/how-to-pass-stored-procedure-parameter-values-from-vb6-application-to-show-a-repo0How to pass stored procedure parameter values from vb6 application to show a report (made by crystal reports 8.5)?odiseh2009-11-25T13:04:02Z2009-11-26T05:35:02Z
<p>Hi</p>
<p>How Can I pass stored procedure parameter values from vb6.0 application to show a report (made by crystal reports 8.5) ?</p>
<p>any help will be appreciated</p>
http://stackoverflow.com/questions/1783587/visual-basic-script-that-control-a-date-format0Visual basic script that control a date formatsimone2009-11-23T14:49:35Z2009-11-23T14:57:13Z
<p>Hi all,<br> i would like to control a string if is in the dd/mm/yyyy format and if the dd number is between 1 and 31 and if mm is between 1 and 12<br>
Someone can help me?<br>
thanks</p>