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 TouchToneTommy 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: BPMan
  • Content: Threads
  • Order by date
  1. BPMan

    TCP reconnect after program crash

    ok i have two executables (A and B) that have an tcp connection. Executables A must be killed often and this causes a problem with the tcp connection. Is there anyway to restart the executable A and have the connection be maintained. I cannot change executable B and i do not want to bring it...
  2. BPMan

    fucntion variable by ref/val droping info

    I compiling a very large system with fortran, ada, c, and C++. The different componets are being compilied and placed in archives then linked toghether. A problem I am seeing is that functions written in C and referenced externally by other C functions seem to drop data. Example Program...
  3. BPMan

    Alignment Restrictions with equivalences

    I am working with code that uses equivalences to make large common arrays. I getting a error that reads like so: Can't place `ifwicao' as directed by EQUIVALENCE due to alignment restrictions And as far as i can tell everything lines up. Does anyone know exactly why this happens and what is...
  4. BPMan

    BLOCK DATA takes forever to compile...

    I am trying to compile some data in file that goes like this BLOCK DATA stuff INTEGER istuff(484484) REAL rstuff(484484) EQUIVALENCE istuff(1), rstuff(1) COMMON someOtherVariable/rstuff DATA rstuff(1) /1.2/ DATA rstuff(...) /1.2/ DATA rstuff(484484) /1.2/ END this has been compiled...
  5. BPMan

    g77...Does Data cause variables to be static

    in fortran variables become static if you initialize them in there declaration. When you initialize a variable using DATA is this considered to be in the declaration, e.g. does it cause the variable to become static. I am using fortran 77 thanks
  6. BPMan

    uploading and editing images

    i have used php image functions or worked with images, but here is what i want to do, is it possible and if so how do i do it: i am being passed the path where the file is located so i want to upload the file to my server change the name and esize the image are there functions for this??
  7. BPMan

    restarting a computer with c# code???

    I want to prompt a user and ask them if they would like to restart their computer after i install some things.... i would like to do this in my c# program...... i just don't know what to call to restart the computer....
  8. BPMan

    good free easy to use installer

    i developed a program in VS .NET and would like to package all the files in an installer.. does anyone know of a good easy to use installer that preferably has a gui interface for setting up the install file. thanks
  9. BPMan

    Getting multiple events with one click

    BUTTON.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ System.out.println("PRINT"); }}); when i click on a button i am getting a bunch of...
  10. BPMan

    Getting multiple mousePressed events with one click

    I have the following code: addMouseListener(new MouseAdapter() { public void mousePressed(MouseEvent e) { System.out.println("MousePressed"); }}); and when i first open my program...
  11. BPMan

    Editing a picture file in code

    i want to edit a picture file with a program. For example i want to go through each pixel and check its RGB values and do something like if(pixel[123][100].Red == 5) pixel[123][100].Red = 27 is this possible or is there an easier way to do this. Thanks
  12. BPMan

    web browser local reference

    i want to load a html file that is in the same folder as my executable but i can't figure out what write for the file location: for a normal file it would just be axWebBrowser1.Navigate("test.html"); but this does not work, any ideas??? thanks
  13. BPMan

    Resource Template File

    I am trying to use bitmap files for the images on my buttons, but when i port my .dll i don't want have to bring the files with me... so i am trying to use the Resource Template to do this but i don't know how to reference the bitmaps i have on there in my code, also i cannot find any literture...
  14. BPMan

    Passing a node to XslTransform

    When i pass a node to XslTransform like this: XslTransform xslTran = new XslTransform(); xslTran.Load("C:\\Documents and Settings\\B1433529\\Desktop\\container.xsl"); xslTran.Transform(node, null, sw); does it treat it any differently where in the tree the node is so if i...
  15. BPMan

    double nested transformations with xsl

    essentially i have and xml file that looks like this <?xml version=&quot;1.0&quot;?> <test parameters id=&quot;01&quot;/> <Test id=&quot;stuff&quot;> <Container id=&quot;999&quot; type=&quot;main&quot;> <Step id=&quot;0&quot;></Step> <Step id=&quot;1&quot;></Step> <Step...
  16. BPMan

    Creating C# .dll, tool box with xml node

    My boss wants me to make a toolbox that is called by another program. My toolbox is passed and xml node. I have written plenty of applications but am new to this whole .dll, stuff and creating things to be called by other programs.... Can anyone explain to me how i go about setting this up or...
  17. BPMan

    J2ME Diplaying a picture

    i am trying to simply display a picture with a midlet but can't seem to get it to work, does anyone know how to do this??? do i have to include the picture in the package???
  18. BPMan

    connecting to an access database on a different drive

    currently i am connecting to a database that is in the same folder as my php file but i want to connect to database that is somewhere else on the network. here is what i am doing now $db_connection = new COM(&quot;ADODB.Connection&quot;); $db_connstr = &quot;DRIVER={Microsoft Access Driver...
  19. BPMan

    Running and update query

    I have an update query in my access database called savings. I have an VB program that uses this database and i want to run this savings update query every time i load the program... i know that i need to put stuff in the load of my first form but how do i run a query in my database? Thanks
  20. BPMan

    getting \ infront of ' and &quot; etc... when write to file

    I am having a user update files using php. My problem is i get \ infront of characters that would normally need them in a string like &quot; or '. I am not sure how to stop these. is there another way i can do the following: <?php include 'header2.ht'; error_reporting(0); $read =...

Part and Inventory Search

Back
Top