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 biv343 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: ecucurella
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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!!
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. ecucurella

    winsock problems

    I'm using the Microsoft Winsock control 6.0 in Visual C++. I have problems to use the GetData method, I receive an error. Where can I find documentation of this method? Or what another control or class I can use to make a socketserver? Thanks in advance
  12. ecucurella

    Font problem

    I'm opening a .fh9 file from Freehand in a PC machine. This files was saved with a Mac machine. When opening I get an error that it don't recognize "Helvetica Cond" font but it's installed. I have test it having the true type font, the postcript font and never works. Do you have any...
  13. ecucurella

    memory problem

    Hi, I use the loadsound method to load an mp3 file in the Sound object. Every time I made a scene change i load a song, one song related to every scene. It is ok, but I have a memory problem because when i load a song the memory that Flash uses increase and if I return to an scene that i have...
  14. ecucurella

    Connection problem

    Hi, When I try to conect to a database, Oracle 8i or SQL Server 2000, with Visual Interdev with any provider: OLEDB or ODBC, I receive an error: "Unspecified error". The machine is Windows 2000, and i have installed msado 2.7 service pack 1. Do you know the reason? Thanks,
  15. ecucurella

    Load a Movie and return when finish

    Hi, I need to load a swf movie when i release a button. So: on (release) { loadMovie("\\video\\intro.swf",_root); } But when this movie finish I want to come back where I was before loading the movie. How can i do this? Thanks,
  16. ecucurella

    getURL

    Hi, I need to publish my fla file in an exe file. So it's opened by the Flash Player 6. I have the next problem: When I call the method getURL("http://www.mydomain.com","_blank") it doesn't happen anything !! There is a way to open an URL in another Explorer window ? Thanks,
  17. ecucurella

    text effect

    How can I do to make that a text appears one letter another other letter like if i write it down ? I think like i reveal the text.
  18. ecucurella

    How to read registry in other machine?

    Hi, Is there a way like Getsetting function to read the settings in the registry of another machine in my LAN? Thanks,

Part and Inventory Search

Back
Top