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

    Async actions using same functions

    ok, I'm looking at synclock and seams to be what i was looking for !! Thank you cucu :)
  2. ecucurella

    Async actions using same functions

    Hi, Ok, this is a good solution but it could be possible that both objects looks at this variable and see that FileAvaliable=True then both set it to False and start the reading atr same time with same problem? Who assures me that this will not happens? I was searching another solution more...
  3. ecucurella

    Async actions using same functions

    Hi, I have found a curious problem working with asyncronous call of methods !! I will try to explain you: - I have a class(Grib) that implements a function(GetNearData) that read some information(temperature data) in some positions in a file(from Latitude/Longitude). - How I have to do too...
  4. ecucurella

    VB.NET 2003 & Sourcesafe multideveloper

    Hey, I have found the solution: Only you have to configure the properties of the project to generate the exe file locally, for example c:\exefiles\, all developers have to had this directory. That's all, then all developers can execute in mode Debug or Release the project at a time !!
  5. ecucurella

    VB.NET 2003 & Sourcesafe multideveloper

    We are developing some project that we have introduce into Visual Sourcesafe, we can develope all at a time but we can not execute all at a time everyone with his own machine. When we change the "Administrator configuration" (under Debug and Release) to not to generate the exe file then strange...
  6. ecucurella

    Problem with vb net and Windows XP

    Hi, I think you have reason !! We have found that some forms appears ok, looking at the differences I see the properties Language and Localizable from the form object. In the correct form Language=Default and Localizable=False and in the incorrect forms Language=Spanish and Localizable=True ...
  7. ecucurella

    Problem with vb net and Windows XP

    Hi, we have tested this and don't solve the problem, we have deleted this files and then rebuild the project and the problem persists. Also, we have windows 2000 with 1280x1024 and and big fonts, and windows XP with 1280x1024 with 120 PPP. Any other idea?
  8. ecucurella

    Problem with vb net and Windows XP

    Hi, there had language differences between two machines , one was in spanish and the other in catalan (we are from Barcelona - Catalonia (http://www.freecatalonia.com/forum2004/main.asp?opc=0&idi=eng)). We have changed the language to be the same and we have deleted all obj folder but the...
  9. ecucurella

    Problem with vb net and Windows XP

    No, I am not runnign the mcAfee antivirus. I have tried to stop all the service like anti virus, firewalls, messenger, etc but it continue doing the same. Any other idea?
  10. ecucurella

    Problem with vb net and Windows XP

    I mean that all control don't appear where they have to be, for example I can't see one of them because it seems to be up o to be down or one label with its textbox are totally out of its place. If I install de VB.NET to develope in a Windows XP machine I see it perfectly in the project...
  11. ecucurella

    Problem with vb net and Windows XP

    Hi, I have made a program with VB NET over Windows 2000 and it works fine, but when I try to execute it over Windows XP many forms, textsboxs and other objects are shown disordered. I don't know what can be the problem? Some one can help me? Thank you very much!!
  12. ecucurella

    Memory leak in Windows Media Player control

    I have a Visual Basic project where I need to use the windows media control (wmp.dll) to play mpeg2 videos. I am using the URL property, controls.play, controls.stop and close methods. Each video I play make memory increase in aproximately 400Kb. After a number of videos the memory hangs up...
  13. ecucurella

    Dinamic array Forms memory error

    Is a dinamic array.
  14. ecucurella

    Dinamic array Forms memory error

    We have an application with one form. Dinamically we create instances of this form inside an array. We have found an error when we create the twentieth form aprox., there are two errors: - Out of memory (error number 7) - Unexpected error (error number 50003) Is there a limitation of the number...
  15. ecucurella

    Streamreader problem

    Hi, I use the streamreader to read one file line by line: ... fileIn = New System.IO.StreamReader("c:\text.txt", system.Text.Encoding.ASCII ) Do linia = fileIn.ReadLine ... Loop Until linia Is Nothing ... If in my file there is a character like á, é, í, etc it can`t read it, it...
  16. ecucurella

    function name

    Hi all, Is there a way to know the function name to print this in a log file? Now if there is an error I print: ... If blnLog Then PrintToLog("ERROR|myfunctionname|" & err.number & "|" & err.Description & "|" & err.Source) ... But I have to manually write the...
  17. ecucurella

    creating class problem

    Thank you for all your answers. Finally I do it with optional parameters asigning them a default value. :)
  18. ecucurella

    creating class problem

    Hi all, I am creating ny own class and I need the same method with the same name but with diferent parameters. Can I do it in visual Basic? For example: ... Public Sub PrintToLog(LineLog As LineLogType, Connection As ConnectionType) ... Public Sub PrintToLog(LineLog As LineLogType) ... Public...
  19. ecucurella

    MSComm control

    Hi all, I am trying control by RS-232 a video mixer using the VB MSComm control. I need to send bytes to the hardware instead of text. For example: -First break -Second the adress of hardware (30H) -Then I need to send commands to it, but all are three bytes, for example 0H c3H 2H How i have...
  20. ecucurella

    passing array to a function

    How can i pass an array to a funtion? 'call function dim usr(10) as string dim pwd(10) as string dim bd(10) as string dim server(10) as string ... 'assign values to arrays usr(0)="pepe" ... 'calling function if ObreBaseDades(Conn, 2,Usr(),Pwd(),Bd(),Server()) then ... 'Function...

Part and Inventory Search

Back
Top