As I said, for web stuff you need php, maybe asp, to comunicate with any database. VB.net won't do it. Search for some flash forum, here's one:
http://www.flashkit.com/index.shtml
Sorry but I am not very experienced in web stuff.
Well, if it is a web form things are quite diferent!
The ocx is only for Windows forms (local applications; exe). For Htm stuff (web form) you must use the activeX which generally is in the web-editors (i.e. frontpage) and embed the Flashmovie in the page with html code. See examples on...
First: the commands between VB and Flash are strings!
So on the flash button you put a command:
on (release) {
fscommand("nameofthecommand","argument")
}
Note that the argument is optional, you also can pass only the command. Or you pass the command everytime with another argument. But only 1...
Well, the above code seems to have a problem in the declare function:
Public Declare Function NetShareAdd9x Lib "svrapi.dll" Alias "NetShareAdd" ( _
ByVal servername As Object, _
ByVal slevel As...
Hi Christiaan
I have gone over the code I have from Steve on the vb.net forum. It's the shi_50 API which is used for W98/Me. Something in it does not work, but I don't know exactly what it is, apearently there is a problem with the buffer size.
And right now I also came up to this site on...
Dim f As System.IO.File
f.SetAttributes(pfad, IO.FileAttributes.ReadOnly)
Don't see any accessibility to the ReadWrite permission. Have been trying around with that already. Think the FileAttributes don't have much to do with the network permissions.
Up to now I found kind a workaround by...
Thanks for your answer.
ADSI. Actually that's the only thing I haven't really tried yet, but I remember I have seen some ADSI code and it did not look different from the others (WMI, API). Occasionally you know some link to ADSI method? I don't remember right now where I have seen it. I think I...
Well, it really looks like nobody knows a solution. I've spent a lot of time and energy on this already. Just want to ask one more time if somebody had an idea. It's a bit silly, if everything works fine except for such a detail. But it really seems to be rather dificult...
Fritz
I'm creating a share for my appfolder, using WMI:
Dim apath As String = IO.Directory.GetCurrentDirectory()
Dim Share_Info As String() = {apath, "MyApp", 0}
Dim Win_Shares As ManagementClass = New ManagementClass("Win32_Share")
Try
Win_Shares.InvokeMethod("Create", Share_Info)
Catch ex As...
Thanks very much Dimandja
Looks fine and I have tried it. The setup is stopped by norton, says that msiexec.exe has to be changed - sounds like Mr. Norton is very angry. If I let the script go on there comes an error message out of the app, looks like it can't load a dataset. And it also looks...
I'm using the install wizard to make a Setup for may vb.2003 app.
Is there a way to launch the installed app (or another programm) after setup has finished?
I cannot find any reference about this. But you see this in a lot of setups, they ask you at the end if you want to launch the app now.
Thank you Mick
I have thought of this already, and if there is no way to do it along with the setup, I think it will be the solution. But I still think it might be possible, although it seems, that the possibilities of doing things like that are quite limited. The setup project only accepts a...
Hi
I've recently upgraded my vb.net2002 app to 2003, mainly because of the possibility to include Framework and MDAC in the setup project.
This work fine as far, but I need to include also the FlashPlayer in the same setup. I have tried around with user-defined actions but it doesn't work. the...
Hi
This might be a solution:
In VB.net2003 you can install the Bootstrapper-PlugIn and then include the framework in the setup. It checks, if the FW is installed and if not it is beeing installed. You can also include the MDAC component.
I have recently bought 2003 and I am actually updating...
Meanwhile I've been trying other ways. First I took the direct databinding off. And I have another Listbox with the values to search in MyTable.
And now I have this code:
Dim i, x As Integer
x = Me.objDataSet1.Tables("MyTable").Rows.Count - 1
For i = 0 To x
If...
I have a ListBox, bound to a DataSet. It displays column1 of the DataSet. Now I want to filter column2 so that the ListBox only displays the rows found with the filtervalue (from a textLabel) in column2.
Dim foundRow As DataRow
Dim findTheseVals(0) As Object
findTheseVals(0) = lblFilter.Text...
Thank you once more for your tips. Well, this now gives me:
"System.Data.DataRowView,System.Data.DataRowView,System.Data.DataRowView,..."
Meanwhile I have been looking for another way. Instead of the ListBox I'm using now the DataSource itself to extract the String. I have a Label1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.