Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Frihi
  • Order by date
  1. Frihi

    vb to flash

    Sendvariable only sends strings. If you have other datatypes you'll have to convert them in flash.
  2. Frihi

    vb to flash

    I think you have to mak shure, flash is aczualising the variable. Usualy it only doaes it, on events, i.e. onload, onclick.
  3. Frihi

    Manipulating Flash Controls How To??

    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.
  4. Frihi

    Manipulating Flash Controls How To??

    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...
  5. Frihi

    Manipulating Flash Controls How To??

    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...
  6. Frihi

    Manipulating Flash Controls How To??

    You cannot call flash functions from vb. You have to send them via fscommand from flash to vb and then catch them in vb.
  7. Frihi

    Creating share in Win98 / Me is ReadOnly

    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...
  8. Frihi

    Creating share in Win98 / Me is ReadOnly

    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...
  9. Frihi

    Creating share in Win98 / Me is ReadOnly

    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...
  10. Frihi

    Creating share in Win98 / Me is ReadOnly

    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...
  11. Frihi

    Creating share in Win98 / Me is ReadOnly

    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
  12. Frihi

    Creating share in Win98 / Me is ReadOnly

    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...
  13. Frihi

    Launch app after setup

    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...
  14. Frihi

    Launch app after setup

    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.
  15. Frihi

    Installing FlashPlayer along with VB.net2003 Setup

    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...
  16. Frihi

    Installing FlashPlayer along with VB.net2003 Setup

    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...
  17. Frihi

    installer calls another installer or installs two things

    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...
  18. Frihi

    ListBox filter

    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...
  19. Frihi

    ListBox filter

    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...
  20. Frihi

    Listbox.Items to String

    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...

Part and Inventory Search

Back
Top