Search results for query: *

  1. I

    Run without framework

    But I can't ask everyone that wish using my program to install it! Most of the peolpe I want to deserbuit it among don't wish to worry about that staff, it's also a massive download as well. Can I just stick some DLL file with the program? Happy New Year To All Of You
  2. I

    Run without framework

    can I somehow run application that required framework2 to develop on a computer that doesn't have it? I wrote a big program using framework2 because of MYSQL. I tryied to distribute it but than I got extremly annoyed when I discovered no one I gave it to could run it, the application returned a...
  3. I

    Icon problems

    I have a problem saving imported icons the import code is: Friend icon() As System.Drawing.Icon #Region "API" Declare Function ExtractIconEx Lib "shell32.dll" Alias "ExtractIconExA" _ (ByVal lpszFile As String, _ ByVal nIconIndex As Integer, _ ByRef phiconLarge As Integer, _...
  4. I

    Problem switching between forms

    Thanks man.
  5. I

    Problem switching between forms

    I have a splash screen that I want to close and open a new form by the name folder I tried that. Dim newform As New Folder newform.Show() newform.Focus() me.hide() but me won't hide! I tried this too Dim newform As New Folder newform.Show() newform.Focus() me.close() but than the...
  6. I

    Flash and VB

    How do I get VB to react when I click on a flash object? How can I use dynamic text to set what will be written on a flash object?
  7. I

    Extract target from a shortcut

    I want to extract the target from a shortcut, for example I have a shortcut file C:\nc.lnk and I want to find it's target through vb, what's the easiest way to do it?
  8. I

    Can't install .net framework2! I need it!

    I have MS SQL server 2005 but I can't install it because all I get is this: the install simple stuck in this stage and I can't do nothing about it! please help
  9. I

    SQL 2000 server

    help me! I bought SQL 2000 server in order to use it with my vb project but when I try to install it it says: "Microsoft SQL Server 2000 Enterprise Edition server component is not supported on this operation system. Only client component will be available for installation". What can I do about...
  10. I

    virtual SQL Database

    I want to build a program that use SQL server online, but only 1 of my 2 computers can be connected to the internet. the connected computer is usually busy so by other people. can I create a virtual SQL host so I can program on both computers? , how?, and will I be able to synchronize it with...
  11. I

    Text and images?

    Can I combine text an images in one box?, will I be able to do it throught MS Office 2003 plugin?
  12. I

    Error filling dataset

    I've build an adapter, when I tried to fill the dataset I got: "An unhandled exception of type 'System.InvalidCastException' occurred in system.data.dll Additional information: Object must implement IConvertible." what can I do about it?
  13. I

    Send Email

    I looked at some places and found that people use "System.Web.Mail" But I don't have it, why?
  14. I

    Send Email

    How can I send email through vb? Post some code example please
  15. I

    log in function

    I used Dim adapter As SqlDataAdapter adapter = New SqlDataAdapter("sp_mine ", SqlConnection1) adapter.SelectCommand.CommandType = CommandType.StoredProcedure adapter.SelectCommand.Parameters.Add(New SqlParameter("@Username", SqlDbType.Text)) adapter.SelectCommand.Parameters.Add(New...
  16. I

    log in function

    Thank you, I found it by myself, thanks for the help!
  17. I

    log in function

    Sorry for that stupid last question, now I know how, 1 question left: How can I extract data from DS? For example I need to extract the value of "ID" to the variable "ID", how can I do that?
  18. I

    log in function

    things like User ID,rank and more
  19. I

    log in function

    Can I use PROCEDURE to return the whole row, if so how? I changed my mind and I want to get all the row instead of just a boolean answer in order to know more then just the username.
  20. I

    log in function

    For example I have used it as a function: ALTER FUNCTION ilyail3.Function2 ( @username text, @password text ) RETURNS TABLE AS RETURN (SELECT * FROM Users WHERE Users.[User name] LIKE @username AND Users.Password LIKE @password) and called it the event: Dim comi As New...
Back
Top