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

    Delay using more than one subroutine

    Hi, I'm using WPF with vb.net for first time, after having used always windows form till now. I have strange delay in textbox append text functionality. I'm try to summarize the issue. I'have the MainWondow xaml where i call other windows like this: Private Sub Data_Extraction_click() Dim...
  2. maccarone

    IndexOutOfRangeException of DataRow

    I found the solution using GetUpperBound(0)<> -1, and it works fine. Thanks
  3. maccarone

    IndexOutOfRangeException of DataRow

    Hi, I'm using in memory DataTable and I would check if a specific value exist in the table (using the primary key already defined) to update a record. I have a table named Test with 2 different field: test_id and number_occurrences Dim record_to_find(() as DataRow record_to_find =...
  4. maccarone

    build a varibale name with value included into an array

    HI, I've tried with this BEGIN { stringa_RN="a,b,c,d,e,f,g,h,i,l,m,n,o,p,q" split(stringa_RN,arrayRN,",") } { for (i in arrayRN) { SYMTAB["RN" arrayRN[i] = "prova" print SYMTAB["RN" arrayRN[i] } } and I obtain the following error: gawk: test_array.awk:12: SYMTAB["RN" arrayRN[i]...
  5. maccarone

    build a varibale name with value included into an array

    I need to use the name of a variable that I create using the character included into an array. The arrayRN contains "a,b,c,d,e,f,g,h,i,l,m,n,o,p" and with a for loop I would use each time a different value for DN and RN variable like DNa, RNa, DNb, RNb, DNc, RNc and so on for (i in...
  6. maccarone

    Using iptables for internal nattined Virtual machine

    Hi all, I need to use my RedHat Linux server to host one vmware virtual machine. I tried several configuration but I'm not able to use it correctly. This is the configuration: Linux box with 2 interfaces: eth0 (151.98.244.143) for the external network vmnet8 (192.168.190.1) for the internal...
  7. maccarone

    knowing how is booted the server (single user or multi user)

    All, Looking inside messages file I'm not able to know if boot was executed in single user mode or not, the boot sequence seems to be the same. How is possible to know if a specific boot was executed in single user mode? Moreover, all command executed in single user mode are not reported inside...
  8. maccarone

    Recovery network and password conf after reinstalling XP

    I need to reinstall Win XP Pro SP2. Before to do this I need to save network configuration and password configuration. I'm currently working in a company that uses NT logon to connect all their computers, so If i reinstall Win XP without saving these conf files I won't be able to log on in the...
  9. maccarone

    Change OS type

    Help !!! I need to install language pack (Italian) in a office 2000 in English. We use a launch.exe tools (it is a company registered office) and when I run "\\XX.XX.XX.XX\gold$\YYY\launch.exe /a=MS_Office_2000_LP1" I receive the following message error (after check OS requirements): "This...
  10. maccarone

    Hyperlink property

    I create an excel spreadsheet in this way: <?PHP $filename = "sheet.xls"; header ("Content-Type: application/vnd.ms-excel"); header ("Content-Disposition: inline; filename=$filename"); ?> <table border="1"> <?PHP for ($i=1; $i<11; $i++) { echo "<tr>"; for...
  11. maccarone

    Hyperlink property

    I have to create an excel spreadsheet via HTML. I have no problem creating it but I don't know how is possible to use the hyperlink property that allow me to show a value into a cell and link that cell with an http URL. How is possible ?? Thanks Massimo
  12. maccarone

    Automatically insert data into memo field

    It works !!! Thanks a lot Ken Reay Maccarone
  13. maccarone

    Automatically insert data into memo field

    Thanks, but the problem, sorry but I've missed before, is that I want put data and user_id in a new line. I tried: Me.Descrizione_caso.SetFocus Me.Descrizione_caso.Text = Me.Descrizione_caso.Text & vbCr & " Modifica del " & Now() & " --- Operatore: " & User.Operatore & "."...
  14. maccarone

    Automatically insert data into memo field

    I'm using Access 2000, and I need to insert, automatically, data and user name into a memo field. In other words, each time that user modify text into memo field, I want add date and user name before the text modfication. Eg. This is the memo data: First roiw Second row .... .... ... Lats row...
  15. maccarone

    Undefined variable XXXXXX in e:\yyyy\xxxx\index.php

    I've checked the difference between my PC and the Linux server, where my site is hosted. Below you can find the difference: (In the brackets the original value in my PC) session.bug_compat_42 on (off) session.gc_divisor 100 (1000) allow_call_time_pass_reference on (off) error_reporting 2039...
  16. maccarone

    Undefined variable XXXXXX in e:\yyyy\xxxx\index.php

    Thanks, but it is not only which error should be showed or not, but the script works only on linux/unix system but not on windows system.
  17. maccarone

    Undefined variable XXXXXX in e:\yyyy\xxxx\index.php

    I'm developing a new website for my church, and each time I use php scripts (downloaded by internet, free scripts) on my PC I get a lot of "Undefined variable" in various php file. If I upload scripts to Linux system (where the website is hosted) all will work fine. I took a look into php.ini...

Part and Inventory Search

Back
Top