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 strongm 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: *

  1. Serenades

    Wmi - ConnectServer

    Solved the problem. I first had to enabled DCOM, then i added a new account as the only one allowed to execute scripts (except SYSTEM). Added the new account as Administrator... Attaching my account information with the script at run time. Thanks for your help anyway. //R
  2. Serenades

    Wmi - ConnectServer

    Hi, Im trying to query my servers health through VBScript but without luck. My script only returns "Access denied" (or similar...). The script is run from a Win2000 server and query other Win2000 servers. I guess i must have a user account on the remote machine, i´ve created a...
  3. Serenades

    Call function right after form is visible

    Hi there! Found a way. <code> private void WinForm_Load(object sender, System.EventArgs e) { // Make sure window is visible // this.Show(); this.Select(); // Call function // genFile(); } </code> Thanks for fast responses! //Robert
  4. Serenades

    Call function right after form is visible

    Hi, I need to call a function right after the form is visible. I dont want the user to click anything, the program should be run automatic. Well, i dont know where to put my call... Main(), WinForm_Load, WinForm... Ive tried some but i only get this errors: An object reference is...
  5. Serenades

    WebService or ActiveXDll - VB6?

    Thanks a lot, this is exactly what i was looking for. A good tutorial on how to get started with WebServices and VB6. http://www.fawcette.com/vsm/2002_09_14th/magazine/features/mercuri/ Robert
  6. Serenades

    WebService or ActiveXDll - VB6?

    Hi, Ive been searching a lot for information about Webservices and discovered that there are none examples for VB6. Isn´t there a way to create a webservice in VB or is it the same as an ActiveXDll??? Im sorry but i dont get this with webservices and all talk about .NET, there must be a...
  7. Serenades

    Calling DLL from C++Builder 6 whitout .lib

    Hi, Ive continued searching and find some usefull(?) information on some russian and japanese sites (im from sweden) ;), after som serious puzzling i managed to get it to work... was about to throw my computer from second floor... I now can use my Dll´s both dynamic, static, from VB and in...
  8. Serenades

    Calling DLL from C++Builder 6 whitout .lib

    Hi, Ive been searching the whole web by this without finding any good information about Borland C++Builder is it me or... My problem is that ive created dll´s in VB which i would like to call from Borland C++Builder, all snippets or helps ive found take for granted you got the .lib file...
  9. Serenades

    SuperOffice

    Im about to develop some small utils for SuperOffice in VB. I dont know where to start, which Reference should i choose, there are some to choose from... I've seen a lot of complete add-ons already developed but i sense i can create some myself. Its not imported at this state what it does as...
  10. Serenades

    Sort ListView, Grid OR ANYTHING!!!

    It worked when i sorted one column after another! Saved me a lot of time! Thanks a lot! -Robert-
  11. Serenades

    Sort ListView, Grid OR ANYTHING!!!

    Ok, i was afraid of that! You dont have any example on how this could be done? -Robert-
  12. Serenades

    Sort ListView, Grid OR ANYTHING!!!

    Hi! I have a ListView with 14 columns and now i want to sort them! I can sort it on one column, for example column no 4. But i want to sort my data in this column order: 0,11,1. I cant find any usefull information on how this can be done, do i need to replace the ListView with some other...
  13. Serenades

    FTP Host Type

    Im using Winsock and have created a FTP server which working without any major problems, BUT i would like to be able to specify that the server is using &quot;Microsoft NT&quot; as host type, so when the client uses &quot;Automatic Detect&quot; it detects &quot;Microsoft NT&quot;... Thanx...
  14. Serenades

    How do i run a &quot;silent&quot; program that waits for a certain time??

    ... or you can use Windows Scheduled Activities to start your application and perform your update on Form_Activate and close it nicely when done. -Robert-
  15. Serenades

    Plays music to fast!!!

    Does any one know hoe to solve this small problem? When i listen to on-line radio´s the music plays to fast, sounds some like Donald Duck singing... quite anoying! Tried with Windows Media Player, WinAMP & RealPlayer the same problem on everyone. It seems as if it plays in the same rate it...
  16. Serenades

    UPDATE SQL

    Well, the database were constructed like that some years ago and its all to late to change that... Its a movie-register, and every row matches one copy. So if one copy got lost i have to change ONE of the rows to say that the copy was lost... for example... We currently use and Omnidex...
  17. Serenades

    Update record

    Hmm, i cant .MoveLast, it gives me an error... I use MSDASQL as my provider, could it have something to do with it? -Robert-
  18. Serenades

    UPDATE SQL

    Hmm, thats the problem, how do i specify which row to update OR how do i make it to only update ONE row?? TOP 1 ??? Never seen... -Robert-
  19. Serenades

    Update record

    I want to update one column in one row, one record... the problem is that when i do my search i got more than one row matching my search, these rows are EXACT the same. So when i do my update the column in all of these rows will be updated with a new value... I only want the column updated...
  20. Serenades

    UPDATE SQL

    Well it wont work... All columns are the same... I need somehow to lock one row or in someway get it to understand that i want to update ONE row. -Robert-

Part and Inventory Search

Back
Top