| Thread | Last Post | Replies |
|
| VB-Process does not terminate after HTTP POST | 16 May 2006 19:16 GMT | 5 |
I wanted to send a HTTP POST via wininet.dll like described on http://www.developer.com/net/vb/article.php/1543371 I noticed that after having sent the post request I could not return to the VB-IDE.
|
| WebBrowser Control - How to read text inside tags | 16 May 2006 19:09 GMT | 1 |
I have a page displayed in the webbrowser control and i want to read the texts inside some tags. I'm using the getElementsByTagName("tagName") but it gives me "" The same function returns values for the FONT or TITLE tags but not for
|
| Pass an array to a sub? | 16 May 2006 18:27 GMT | 4 |
Newbie question here (although I'm not a newbie) - I've never had a need to do this before. How do I pass an array to a Sub? In my app I using a 3rd-party control that returns data in one of its properties in the form of an integer array. I normally reference the
|
| Debug an activeX.exe from my Main | 16 May 2006 18:19 GMT | 2 |
I have my main .exe project that is calling an .exe activeX I try to find out the way to debug my activeX. I have my two projects opened separately. I tried to debug by adding a breakpoint and by starting it before starting the main project.
|
| InterlockedIncrement | 16 May 2006 17:46 GMT | 2 |
Same as yesterday, I'm adapting this from Curland's book. Can't get the InterlockedIncrement to work. Yesterday Mike S. revealed that my ZeroMemory function declaration was incorrect, even though it came from the API Viewer. Perhaps that is the issue here.
|
| query problem | 16 May 2006 15:02 GMT | 19 |
I have a combined query made out of the values in some textboxes. I don't know how to add the OR between the values since I never know if all the textboxes have been filled.
|
| Listview - deletes first item when not selected | 16 May 2006 13:58 GMT | 2 |
I have the following code which is supposed to test whether a listview item is selected or not and then delete accordingly: Private Sub cmdDelete_Click() If Me.lvwUserList.FullRowSelect = False Then
|
| Data Report | 16 May 2006 13:57 GMT | 3 |
I have a problem with data report! For example i have this table: id name points -----------------------------------------------
|
| copymemory help | 16 May 2006 11:47 GMT | 1 |
I wanted to call this function which is in a dll from VB. int ** __stdcall hadmat1(long r) The function returns a two dimensional array (r X r matrix). The array is initialized within the dll using this function
|
| problem filling listview | 16 May 2006 08:49 GMT | 2 |
I'm trying to fill a listview with records in a table. I get an error when the field is either empty or Null: Do While rs2.EOF = False Set itmX = lstResult.ListItems.Add(, , rs2.Fields(1), , 1)
|
| ListBox help | 16 May 2006 05:48 GMT | 2 |
Is there a way to add strings on the same line of a listbox? I basically want to emulate the "adding periods" effect inside the inner loop: Loop A
|
| Moving Project Source from one machine to another | 16 May 2006 04:58 GMT | 15 |
I am trying to move my source codes from my laptop to my office desktop, Copied the entire Visual Basic folder to my jump drive and copied it to my Visual Basic folder on the desktop. When I try and open a project to edit it, I get the following message
|
| Command Line Arguments | 16 May 2006 01:36 GMT | 4 |
I am trying pass command line arguments using ShellExecute. One of the parameters has a space between two words "Test One". The app taking it in thinks that the second word is another argument. Is there a way around this other than using a character to act as a space like "_" ...
|
| Copy and Zero memory | 15 May 2006 23:17 GMT | 5 |
Trying to adapt this from Curland's excellent book. It eludes me. On page 297 Matt had "CacheXA" plugged into both LenB functions. I gather that was erratum. Thanks in advance.
|
| Printing map from web page | 15 May 2006 22:12 GMT | 3 |
I am in need of printing out a map from a web page. The map can be from mapquest, yahoo maps or google maps. My app is using the web browser control. I navigate to the corect page and can see the map onscreen, but I can't get he image into my app to print it out.
|