Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
C# / VB.NET - Help me!
Forum - C# / VB.NET - Help me!

Avatar
chibi89 (Normal User)
Newbie


Messaggi: 8
Iscritto: 27/05/2008

Segnala al moderatore
Postato alle 17:24
Giovedì, 12/06/2008
Urgente aiutatemi.
Ero sul punto di publicare con vb.net 2008 il mio programma quano mi va harestituire il medesimo errore :
Codice sorgente - presumibilmente Plain Text

  1. all'attività "SingFile" non è stato assegnato un valore pe il parametro obbligatorio "CertificateThubprint"


Codice sorgente - presumibilmente Plain Text

  1. Impossibile publicare perchè non p stato possibile eseguire la compilazine



aiutatemi per favore

PM Quote
Avatar
wolfslair (Normal User)
Rookie


Messaggi: 25
Iscritto: 02/06/2008

Segnala al moderatore
Postato alle 17:57
Giovedì, 12/06/2008
A parer mio se posti un frammento del codice è più facile poterti aiutare !!

PM Quote
Avatar
chibi89 (Normal User)
Newbie


Messaggi: 8
Iscritto: 27/05/2008

Segnala al moderatore
Postato alle 18:16
Giovedì, 12/06/2008
eccolo:
Codice sorgente - presumibilmente VB.NET

  1. Imports System
  2. Imports System.Net
  3. Public Class frmBrowser
  4.     Public FavoritesFile As String = Application.StartupPath & "\Favorites.dat"
  5.     Public HomePageFile As String = Application.StartupPath & "\Settings.dat"
  6.     Public HomePage As String
  7.     Public Iph As IPHostEntry
  8. #Region "Metodi personalizzati"
  9. #Region "Preferiti"
  10.     Public Sub AddFavorites(ByVal NewText As String)
  11.         Dim WTemp As New IO.StreamWriter("Temp.txt")
  12.         Dim RFile As New IO.StreamReader(FavoritesFile)
  13.  
  14.         While Not RFile.EndOfStream
  15.             WTemp.WriteLine(RFile.ReadLine)
  16.         End While
  17.         WTemp.Write(NewText)
  18.  
  19.         WTemp.Close()
  20.         WTemp = Nothing
  21.         RFile.Close()
  22.         RFile = Nothing
  23.  
  24.         FileCopy("Temp.txt", FavoritesFile)
  25.         Kill("Temp.txt")
  26.     End Sub
  27.     Public Sub DeleteFavorites(ByVal ToDel As String)
  28.         Dim WTemp As New IO.StreamWriter("Temp.txt")
  29.         Dim RFile As New IO.StreamReader(FavoritesFile)
  30.         Dim S As String
  31.  
  32.         While Not RFile.EndOfStream
  33.             S = RFile.ReadLine
  34.             If S = ToDel Then
  35.                 RFile.ReadLine()
  36.             Else
  37.                 WTemp.WriteLine(S)
  38.             End If
  39.         End While
  40.  
  41.         WTemp.Close()
  42.         WTemp = Nothing
  43.         RFile.Close()
  44.         RFile = Nothing
  45.  
  46.         FileCopy("Temp.txt", FavoritesFile)
  47.         Kill("Temp.txt")
  48.     End Sub
  49.     Public Function GetURL(ByVal Name As String)
  50.         Dim RFile As New IO.StreamReader(FavoritesFile)
  51.         Dim S As String = ""
  52.  
  53.         While Not RFile.EndOfStream
  54.             If RFile.ReadLine = Name Then
  55.                 S = RFile.ReadLine
  56.                 Exit While
  57.             End If
  58.         End While
  59.  
  60.         RFile.Close()
  61.         RFile = Nothing
  62.         Return S
  63.     End Function
  64.     Public Sub RefreshFavorites()
  65.         Try
  66.             Dim Fav As New IO.StreamReader(FavoritesFile)
  67.             Dim S As String
  68.             Dim i As Int16 = 0
  69.  
  70.  
  71.             FavoritesButton.DropDownItems.Clear()
  72.             strRemove.DropDownItems.Clear()
  73.  
  74.             While Not Fav.EndOfStream
  75.                 S = Fav.ReadLine
  76.                 FavoritesButton.DropDownItems.Add(S)
  77.                 strRemove.DropDownItems.Add(S)
  78.                 AddHandler FavoritesButton.DropDownItemClicked, AddressOf OpenFavorites
  79.                 Fav.ReadLine()
  80.                 i += 1
  81.             End While
  82.  
  83.             Fav.Close()
  84.             Fav = Nothing
  85.         Catch ex As IO.FileNotFoundException
  86.             Dim NewFav As New IO.StreamWriter(FavoritesFile)
  87.             NewFav.Close()
  88.             NewFav = Nothing
  89.         End Try
  90.     End Sub
  91. #End Region
  92. #Region "Altro"
  93.     Public Function GetExtension(ByVal name As String) As String
  94.         Dim s As String = ""
  95.         Dim i, a As Int16
  96.  
  97.         For i = 0 To name.Length - 1
  98.             If name.Chars(i) = "." Then
  99.                 a = i + 1
  100.             End If
  101.         Next
  102.         For i = a To name.Length - 1
  103.             s = s & name.Chars(i)
  104.         Next
  105.         Getextension = s
  106.     End Function
  107.     Public Function GetName(ByVal name As String) As String
  108.         Dim s As String = ""
  109.         Dim i, LastBS, LastDot As Int16
  110.  
  111.         For i = 0 To name.Length - 1
  112.             If name.Chars(i) = "\" Then
  113.                 LastBS = i + 1
  114.             End If
  115.             If name.Chars(i) = "." Then
  116.                 LastDot = i
  117.             End If
  118.         Next
  119.         For i = LastBS To LastDot - 1
  120.             s = s & name.Chars(i)
  121.         Next
  122.         GetName = s
  123.     End Function
  124.     Public Sub ControlDownload()
  125.         If GetExtension(txtURL.Text) = "zip" Then
  126.             Dim down As New Internet_Navigator_4.frmDownload
  127.             down.lstDown.Items.Add(txtURL.Text)
  128.             down.DList(down.lstDown.Items.Count - 1).URL = txtURL.Text
  129.             down.DList(down.lstDown.Items.Count - 1).path = "C:\Documents and settings\Proprietario\Documenti\" & GetName(txtURL.Text) & "." & GetExtension(txtURL.Text)
  130.             down.Show()
  131.         End If
  132.     End Sub
  133. #End Region
  134. #End Region
  135.     Private Sub frmBrowser_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  136.  
  137.         Try
  138.             Dim ReadH As New IO.StreamReader(Application.StartupPath & "\Settings.dat")
  139.             txtURL.Text = ReadH.ReadLine
  140.             ReadH.Close()
  141.             ReadH = Nothing
  142.             WebBrowser.Navigate(New Uri(txtURL.Text))
  143.             HomePage = txtURL.Text
  144.             RefreshFavorites()
  145.         Catch ex As IO.FileNotFoundException
  146.             Dim NewReadH As New IO.StreamWriter(HomePageFile)
  147.             NewReadH.WriteLine("http://www.newspoint.altervista.org/Software_Center/")
  148.             NewReadH.Close()
  149.             NewReadH = Nothing
  150.             WebBrowser.Navigate(New Uri("http://www.newspoint.altervista.org/Software_Center/"))
  151.         End Try
  152.     End Sub
  153.     Private Sub ToolStripButton9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton9.Click, VaiToolStripMenuItem.Click
  154.         On Error Resume Next
  155.         WebBrowser.Navigate(txtURL.Text)
  156.     End Sub
  157.     Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click, IndietroToolStripMenuItem.Click
  158.         On Error Resume Next
  159.         WebBrowser.GoBack()
  160.         txtURL.Text = WebBrowser.Url.AbsoluteUri
  161.     End Sub
  162.     Private Sub ToolStripButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton2.Click, AvantiToolStripMenuItem.Click
  163.         On Error Resume Next
  164.         WebBrowser.GoForward()
  165.         txtURL.Text = WebBrowser.Url.AbsoluteUri
  166.     End Sub
  167.     Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click, AggiornaToolStripMenuItem.Click
  168.         On Error Resume Next
  169.         StatusLabel.Text = "Aggiornamento pagina"
  170.         WebBrowser.Refresh()
  171.         txtURL.Text = WebBrowser.Url.AbsolutePath
  172.     End Sub
  173.     Private Sub ToolStripButton4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton4.Click, InterrompiToolStripMenuItem.Click
  174.         On Error Resume Next
  175.         StatusLabel.Text = "Interruzione operazione"
  176.         WebBrowser.Stop()
  177.         txtURL.Text = WebBrowser.Url.AbsoluteUri
  178.     End Sub
  179.     Private Sub ToolStripButton5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton5.Click, VisualizzaSorgenteToolStripMenuItem.Click
  180.         Dim source As New Source
  181.         source.ShowDialog()
  182.     End Sub
  183.     Private Sub ToolStripButton7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton7.Click, DownloadManagerToolStripMenuItem.Click
  184.         Try
  185.             Shell("C:\Programmi\Newspoint Software\Internet Navigator 4\DownloadManager2\DownloadManager2\bin\Relase\DownloadManager2.exe", AppWinStyle.NormalFocus)
  186.         Catch FNFE As IO.FileNotFoundException
  187.             MsgBox("Probabilmente il modulo richiesto è dannegiato o non installato correttamente nel programma! Ragion per qui si avviera il modulo di riserva", MsgBoxStyle.Exclamation)
  188.             Dim Down As New frmDownload
  189.             Down.Show()
  190.         End Try
  191.     End Sub
  192.     Private Sub ToolStripButton6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton6.Click, BugReportToolStripMenuItem.Click
  193.         WebBrowser.Navigate("http://www.newspoint.altervista.org/Software_Center/")
  194.         txtURL.Text = "http://www.newspoint.altervista.org/Software_Center/"
  195.     End Sub
  196.     Private Sub AboutToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AboutToolStripMenuItem.Click
  197.        
  198.     End Sub
  199.     Private Sub AggiungiManulamenteToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AggiungiManulamenteToolStripMenuItem.Click
  200.         Dim Name, URL As String
  201.         URL = InputBox("URL della pagina da aggiungere:")
  202.         Name = InputBox("Nome dell'elemento da aggiungere ai Preferiti:")
  203.         AddFavorites(Name & vbCrLf & URL)
  204.         RefreshFavorites()
  205.     End Sub
  206.     Private Sub AggiungiQuestaPaginaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AggiungiQuestaPaginaToolStripMenuItem.Click
  207.         Dim Name As String
  208.         StatusLabel.Text = "Aggiunta ai preferiti"
  209.         Name = InputBox("Nome dell'elemento da aggiungere ai Preferiti:")
  210.         AddFavorites(Name & vbCrLf & txtURL.Text)
  211.         RefreshFavorites()
  212.         StatusLabel.Text = WebBrowser.Document.Url.AbsolutePath
  213.     End Sub
  214.     Private Sub OpenFavorites(ByVal sender As Object, ByVal e As Windows.Forms.ToolStripItemClickedEventArgs)
  215.         txtURL.Text = GetURL(e.ClickedItem.Text)
  216.         StatusLabel.Text = "Apertura pagina " & txtURL.Text & " in corso"
  217.         WebBrowser.Navigate(New Uri(txtURL.Text))
  218.     End Sub
  219.     Private Sub FavoritesOption(ByVal sender As Object, ByVal e As System.Windows.Forms.ToolStripItemClickedEventArgs) Handles strRemove.DropDownItemClicked
  220.         If MsgBox("Eliminare questa voce?", MsgBoxStyle.Question + vbYesNo, "Eliminazione") = MsgBoxResult.Yes Then
  221.             DeleteFavorites(e.ClickedItem.Text)
  222.             RefreshFavorites()
  223.         End If
  224.     End Sub
  225.     Private Sub RimuoviTuttiToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RimuoviTuttiToolStripMenuItem.Click
  226.         Kill(FavoritesFile)
  227.         Dim W As New IO.StreamWriter(FavoritesFile)
  228.         W.Close()
  229.         W = Nothing
  230.         RefreshFavorites()
  231.     End Sub
  232.     Private Sub CambiaManualmenteToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CambiaManualmenteToolStripMenuItem.Click
  233.         Dim S As String
  234.         Dim W As New IO.StreamWriter(HomePageFile)
  235.         S = InputBox("Nuova home page:")
  236.         W.WriteLine(S)
  237.         W.Close()
  238.         W = Nothing
  239.     End Sub
  240.     Private Sub SettaQuestaPaginaComeHomePageToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SettaQuestaPaginaComeHomePageToolStripMenuItem.Click
  241.         Dim W As New IO.StreamWriter(HomePageFile)
  242.         W.WriteLine(WebBrowser.Url.AbsoluteUri)
  243.         W.Close()
  244.         W = Nothing
  245.     End Sub
  246.     Private Sub ToolStripButton10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton10.Click
  247.         On Error Resume Next
  248.         WebBrowser.Navigate(New Uri(HomePage))
  249.         txtURL.Text = WebBrowser.Document.Url.AbsoluteUri
  250.     End Sub
  251.     Private Sub AttaccaIlSitoToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  252.         Dim Attacca As New Attacca
  253.         Attacca.ShowDialog()
  254.     End Sub
  255.     Private Sub RilevaIPToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RilevaIPToolStripMenuItem.Click, RilevaIPToolStripMenuItem1.Click
  256.         Try
  257.             Dim Iph As IPHostEntry
  258.             Iph = Dns.Resolve(WebBrowser.Url.Host)
  259.             MsgBox("L'Ip Del Sito " & WebBrowser.Url.Host & " ・ " & Iph.AddressList(0).ToString, MsgBoxStyle.Information, "Newspoin Software Internet Navigator 3 - Show Ip")
  260.         Catch ex As System.NullReferenceException
  261.             MsgBox("Il sito deve ancora essere caricato. Attendere.", MsgBoxStyle.Exclamation, "Errore")
  262.         End Try
  263.     End Sub
  264.     Private Sub WebBrowser_Navigated(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserNavigatedEventArgs) Handles WebBrowser.Navigated
  265.         StatusLabel.Text = txtURL.Text
  266.         txtURL.Text = WebBrowser.Document.Url.AbsoluteUri
  267.     End Sub
  268.     Private Sub WebBrowser_Navigating(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles WebBrowser.Navigating
  269.         StatusLabel.Text = "Apertura pagina " & e.Url.AbsoluteUri & " in corso"
  270.         ControlDownload()
  271.     End Sub
  272.     Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItem2.Click
  273.         Dim HTMLPage As New IO.StreamWriter("http://www.newspoint.altervista.org/Software_Center/")
  274.         HTMLPage.Write(WebBrowser.DocumentText)
  275.         HTMLPage.Close()
  276.         HTMLPage = Nothing
  277.         Dim Proc As New Process
  278.         Proc.StartInfo.FileName = "http://www.newspoint.altervista.org/Software_Center/.html"
  279.         Proc.StartInfo.Verb = "Print"
  280.         Proc.Start()
  281.     End Sub
  282.     Private Sub WebBrowser_ProgressChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser.ProgressChanged
  283.         DownloadProgB.Visible = True
  284.         DownloadProgB.Value = e.CurrentProgress * 100 / e.MaximumProgress
  285.         If e.CurrentProgress = e.MaximumProgress Or e.CurrentProgress = 0 Then
  286.             DownloadProgB.Visible = False
  287.         End If
  288.     End Sub
  289.     Private Sub EseguiScansioneToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  290.         Dim PortScan As New Portscan
  291.         PortScan.ShowDialog()
  292.     End Sub
  293.     Private Sub ToolStripButton8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton8.Click
  294.         WebBrowser.Navigate("http://www.newspoint.altervista.org/Software_Center/")
  295.     End Sub
  296.  
  297.     Private Sub NavigazioneAnonimaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NavigazioneAnonimaToolStripMenuItem.Click
  298.         WebBrowser.Navigate("http://www.newspoint.altervista.org/Software_Center/")
  299.     End Sub
  300.  
  301.  
  302.     Private Sub ToolStripButton11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TaskManager.Click
  303.         StatusLabel.Text = "Apertura Modulo Task Manager"
  304.         Dim Down As New Extra
  305.         Down.Show()
  306.         StatusLabel.Text = "Chiusura Modulo Completata....."
  307.     End Sub
  308.  
  309.     Private Sub ShutDownBeta_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShutDownBeta.Click
  310.         StatusLabel.Text = "Apertira Modulo Shut Dows Beta"
  311.         Dim Down As New Shut
  312.         Down.Show()
  313.         StatusLabel.Text = "Chiusura Modulo Completata....."
  314.     End Sub
  315.  
  316.     Private Sub ToolStripButton18_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton18.Click
  317.         Try
  318.             Shell("C:\Programmi\Newspoint Software\Internet Navigator 4\FTP\FTP.exe", AppWinStyle.NormalFocus)
  319.         Catch FNFE As IO.FileNotFoundException
  320.             MsgBox("Probabilmente il modulo richiesto è dannegiato o non installato correttamente nel programma!", MsgBoxStyle.Exclamation)
  321.         End Try
  322.     End Sub
  323.  
  324.     Private Sub ToolStripButton16_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton16.Click
  325.         WebBrowser.Navigate("http://www.mail.live.com/")
  326.     End Sub
  327.  
  328.     Private Sub ToolStripButton15_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton15.Click
  329.         WebBrowser.Navigate("http://www.microsoft.com/")
  330.     End Sub
  331.  
  332.     Private Sub ToolStripButton13_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton13.Click
  333.         WebBrowser.Navigate("http://it.babelfish.yahoo.com/")
  334.     End Sub
  335.  
  336.     Private Sub ToolStripButton17_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton17.Click
  337.         'txtSearch è la textbox In cui si inseriscono
  338.         'le parole da cercare
  339.         Dim Str As String = txtSearch.Text
  340.         Dim Words As New List(Of String)
  341.  
  342.         'Separa il testo In base agli spazi, aggiungendo
  343.         'ogni singola parola alla lista
  344.         For Each S As String In Str.Split(" ")
  345.             If Not String.IsNullOrEmpty(S) Then
  346.                 Words.Add(S)
  347.             End If
  348.         Next
  349.  
  350.         'Costruisce la query
  351.         Dim Query As String = _
  352.         "hl=it&safe=off&rls=GGGL%2CGGGL%3A2006-18%2CGGGL%3Ait&q="
  353.  
  354.         'Accoda le singole parole, separate da '+'
  355.         For I As Int16 = 0 To Words.Count - 1
  356.             If I > 0 Then Query &= "+"
  357.             Query &= Words(I)
  358.         Next
  359.  
  360.         'Conclude la query
  361.         Query &= "&btnG=Cerca&meta="
  362.  
  363.         'Effettua la ricerca
  364.         WebBrowser.Navigate("http://www.google.it/search?" & Query)
  365.     End Sub
  366.  
  367.     Private Sub ToolStripButton19_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton19.Click
  368.         WebBrowser.Navigate("http://newspoint.altervista.org/")
  369.     End Sub
  370.  
  371.     Private Sub ToolStripButton20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton20.Click
  372.         Try
  373.             Shell("C:\Programmi\Newspoint Software\Internet Navigator 4\Update File\Download Update Center.exe", AppWinStyle.NormalFocus)
  374.         Catch FNFE As IO.FileNotFoundException
  375.             MsgBox("Probabilmente la rete è temporaneamente offline ho non configurata per l'applicazione!", MsgBoxStyle.Exclamation)
  376.         End Try
  377.     End Sub
  378.  
  379.     Private Sub ToolStripButton12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton12.Click
  380.         Try
  381.             Shell("C:\Programmi\Newspoint Software\Internet Navigator 4\Mail Send\VBMOutlook.exe", AppWinStyle.NormalFocus)
  382.         Catch FNFE As IO.FileNotFoundException
  383.             MsgBox("Probabilmente la rete è temporaneamente offline ho non configurata per l'applicazione!", MsgBoxStyle.Exclamation)
  384.         End Try
  385.     End Sub
  386. End Class


PM Quote
Avatar
Il Totem (Admin)
Guru^2


Messaggi: 3635
Iscritto: 24/01/2006

Segnala al moderatore
Postato alle 16:38
Venerdì, 13/06/2008
Ti rendi conto che questo sorgente è pressoché completamente copiato da quello di Global Web 2.0, rilasciato da me e Citynova qualche anno fa?
Il mio codice è inconfondibile, lo riconosco facilmente. Hai perfino usato come risorsa il mio Download Manager 2.0. Tutto questo senza chiedere niente a nessuno, senza uno straccio di richiesta.

Hai da dire qualcosa in tua difesa prima che mi arrabbi?

PM Quote
Avatar
chibi89 (Normal User)
Newbie


Messaggi: 8
Iscritto: 27/05/2008

Segnala al moderatore
Postato alle 11:40
Sabato, 14/06/2008
si, io lo scaricato esattamente 9 mesi ma per caso
poi ho dovuto formattare il pc, è avevo perso il link xkè stavo proprio per inviare la richiesta per modificarlo, e solo ora lo visto per puro caso su google il link del sito, e giuro che non ricordavo che qualcuno avesse questo sorgente, e cmq posto un'immagine che vi fa capire la struttura è diversa le imagini e tuto il resto, cmq vi giuro che non era mia intenzione usare il vostro codice sorgente sensa il vostro permesso, ansi vi diro che durante la formattazione credevo di aver perso il vostro progetto "sensa modificato" sensa sapere ke lo avevo salvato nella pendrive, poi mi è venuta la passione della programmazione ed eccomi quì.
Cmq vi porgo le mie scuse


chibi89 ha allegato un file: Immagine.JPG (165306 bytes)
Clicca qui per guardare l'immagine

Ultima modifica effettuata da chibi89 il 14/06/2008 alle 11:55
PM Quote
Avatar
Il Totem (Admin)
Guru^2


Messaggi: 3635
Iscritto: 24/01/2006

Segnala al moderatore
Postato alle 13:48
Domenica, 15/06/2008
Bene, e vorrei sperare che, se è vero che sei appasionato di programmazione come dici, tu abbia la pazienza di cancellare tutto ciò che hai copiato e riscriverlo da solo, soprattutto con consapevolezza di quello che fai. Infatti, anche avendolo trovato in un momento successivo e non sapendo da dove venisse, essendo comunque a conoscenza che il codice non era tuo, non mi sembra giusto che lo dichirai un tuo programma.
Sei fortunato che abbiamo chiarito il malinteso ora, altrimenti l'accusa sarebbe stata pesante.

PM Quote
Avatar
chibi89 (Normal User)
Newbie


Messaggi: 8
Iscritto: 27/05/2008

Segnala al moderatore
Postato alle 14:42
Domenica, 15/06/2008
ok lo riscrivero di nuovo il pezzo del tuo codice, ma mi sai dire il xkè si generano i 2 errori elencati all'inizio del post? eseguendo il debug funziona tutto regolarmente

Ultima modifica effettuata da chibi89 il 15/06/2008 alle 14:46
PM Quote