638 Posted Topics
Re: A really easy way (today) is to use the settings of the application. Can be easily acessed through the My.Settings class and, if you need to change any of the values to be recognized on the next run, they can be saved using the My.Settings.Save method The settings class supports … | |
Re: Where do you instantiated frmSChoice and frmUserChoice? | |
Re: To search for ideas you can go to [url]http://apuntes.rincondelvago.com/trabajos_global/[/url] Is in Spanish but I'm sure you can babelfish it | |
Re: There are many ways to do it, and one of them is using the recursivity; using it, you can define a parser function like [CODE] Function Parse(ByVal SourceString As String) As String ' ' Create a temp return info ' Dim ReturnString As New Text.StringBuilder ' ' The loop position … | |
Re: I use the spreadsheet [url]http://www.fpoint.com/netproducts/spreadwin/spreadwin.aspx[/url] I save it as Excel file then send it as an attachement by mail. Hope this helps | |
Re: You can try something like [CODE] Dim WithEvents Frm As FormRestoreDB Dim OpenForms As FormRestoreDB() Private Sub BtnOpenDB_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnOpenDB.Click ' ' Create a new instance ' Frm = New FormRestoreDB ' ' Add to the forms collection (if you need it). ' … | |
Re: Just find the text you need to change the font or the color using the Find function of the rich text box, wich will return the text position, or advance through the text property analyzing the current text (without the need to be aware of the curent format). Then just … | |
Re: There are many ways to do that but essentially the Popupper application needs to notify to the Watcher when a new popup is created. One way is to create a file in a predefined folder when the Popupper popups and delete the file when the popup closes. The Watcher application … | |
Re: Read [url]http://msdn.microsoft.com/en-us/library/ddck1z30(VS.71).aspx[/url] Hope this helps | |
Re: On the sqlQRY1 you DO NOT specify wich fields to fill wich meand that the AUDIO table has only one field. On the sqlQRY2 you specify to fill ONLY the field called Nom_Img in the table IMAGE. If this table has more fields, you must: * Or define default values … | |
Re: Some things you can do: To Count all the lines to process you must [CODE] For Each strName In dlg.FileNames ' Count all the lines of the input text file / set progress bar to length Dim lines As String() = IO.File.ReadAllLines(dlg.FileName) ProgressBar1.Maximum += lines.Length - 1 Next[/CODE] Then to … | |
Re: Is it possible that you current version of the provider needs some upgrade/update? You can obtain some info in: [url]http://support.microsoft.com/kb/239114/en-us[/url] [url]http://support.microsoft.com/kb/303528/en-us[/url] Hope this helps | |
Re: I understand that it is a windows forms application. Not a web one. Do you have checked, in the application properties, security tab, the Enable ClickOnce, then the partial trust application, and calculated the permissions for local intranet? Or just set it as a full trust application?. Putting the application … | |
Re: Start at [url]http://msdn.microsoft.com/en-en/library/system.threading(VS.80).aspx[/url] You can continue on [url]http://www.yoda.arachsys.com/csharp/threads/[/url] Hope this helps. | |
Re: Just guessing you also need to define the Insert, Delete and Update commands for the OleDbDataAdapter before trying to use them. | |
Re: What do you have on Item(13)? On your code ony a boolean value showing or not the picture box. What do you should have?. A good soultion is to have the full path to the picture(I.E. "D:\Pictures\PeopleILike01.jpg" or "\\Hostname\Sharename\PicturesDir\PictureNumber765.tif" ). In this case you can: PicBox.ImageLocation = ds.Tables("Personnel").Rows(inc).Item(13) PicBox.Refresh | |
Re: The print queue (spooler) is always ready to receive and enqueue new print jobs. This is a standard feature of Windows and almost all other current Operating systems. When the printer goes on line, all the print jobs in the queue are printed. If you want to warn the user … | |
Re: Having an OledbConnection instanced and opened, you can create an OledbCommand with the command string "EXECUTE MyStoredProcedure" and then using the oledbcommand.executenonquery method. All of this bein valid if the underlying DB can support stored procedures. Hope this helps [QUOTE=Phenneger;1291532]Is there a way to used stored procs in visual studio … | |
Re: You need to create a new checkbox for each row, and add the new check box to your forms or page at run time, not at design. On line 17 you need to: Dim Cb as new Checkox : cb.name = "Chk" & reader("CandidateId").ToString : cb.text = reader("candidateLname").ToString : Me.Controls.add(cb) … | |
Re: Give a try to the FarPoint Spread for Windows Forms from GrapeCity V.5 (free download for limited test time, good support forum) You can customize almost all cell layouts | |
Re: I Hope you already solvet it at due time. Pay attention to the compare you are doing because you are missing the case when the current stock and the ordered quantity are equals. On the Ready to ship function, when the current stock is smaller than the requested quantity, the … | |
Re: Windows forms allow to direct translate the texts on your form using the form designer and setting the Localizable option to true. Then on the default language set the texts you want to appear when no language was selected. You can select as many languages you need. For each language … | |
Re: Just sounds like you have a 'virus' on your machine. Using msconfig, try to verify all the startup processes and disable every thing you don't really need. If this does not solves the problem, try to mount the disk on another machine, as secondary disk and try to clean it … | |
Re: 1) To save a few, you can use indexes instead of keys when referencing controls. 2) Passing byvalue needs to copy the data to the stack. As larger the data is, slower response time. 3) Creating a new string each time you want to reference a control to use it … | |
Re: Mostly, you are using a query to show the results. But... you need to use an updatable query. An updatable query must not use aggregate functions nor outer joins nor return calculated values. All this functionality should be imlemented on the report design or Create temporary tables with the right … | |
Re: In your code you are adding items to the list, not just showing the new volume. To do that, you must set the new value to the Text property of the listbox and to the VLC.Volume using some code like [CODE] ListBox1.text = V.tostring VLC.Volume = V [/CODE] | |
Re: I would suggest to pass the question number to the question presenter routine, an use the index to access the array: [CODE] Sub question(Byval intQuestionNumber as Integer) txtQuestion.Text = strQuestionInfo(intQuestionNumber , 0) btnAnswer1.Text = strQuestionInfo(intQuestionNumber , 1) btnAnswer2.Text = strQuestionInfo(intQuestionNumber , 2) btnAnswer3.Text = strQuestionInfo(intQuestionNumber , 3) btnAnswer4.Text = strQuestionInfo(intQuestionNumber … | |
Re: Maybe you can create a custom query for the data you want to filter, and use it as datasource | |
Re: Just a few things to have in mind: 1) 2007 specific commands / options are not valid on 2003 so they fail when starting the application with 2003. Ex: Ribbon 2007 is not supported by 2003. 2) 2003 menus are recognizad as addin in 2007, not as menus. 3) I … | |
Re: Quote: [url]http://en.wikipedia.org/wiki/NDISwrapper[/url] You can try [url]http://www.ehow.com/how_5019442_install-xp-drivers-vista.html[/url] Anyway, not all drivers are fully compatible even in XP compatible mode and some fail to install. | |
Re: A quick tutorial: [url]http://msdn.microsoft.com/en-us/library/bb972257(es-es).aspx[/url] The tutorial is in Spanish and no English version found. The code examples are clear. You can babelfish a little for the translation. :) ![]() | |
Re: Seems related on how SQL handles the severity level. ([url]http://msdn.microsoft.com/en-us/library/ms178592.aspx[/url]) | |
Re: This can be an starting point: [url]http://www.microsoft.com/learning/en/us/default.aspx[/url] | |
Re: In order to be verified as a trusted publisher you need to have a valid X509 certificate from a worldwide trusrworthy Certification authority (IE: Verisign). The go to project properties and on the signing tab, add your certificate and sign the assembly. Use [url]http://msdn.microsoft.com/en-us/library/ms247123.aspx[/url] as an starting point. | |
Re: A possible solution: a) Clean the Debug folder of your project. b) Compile/Test your project again in Debug mode. c) Burn a cd with the content of your Debug folder. | |
Re: Hereafter you can find an example of the class definition. Some hints: * The internal class values, and those of the propertires must match in the type of variable * You need Functions instead of Subroutines to return values. [Code=VB] ' ' The Rectangle class: ' ' This class will … | |
Re: Just analyze what are you doing on this piece of code 1 - excel = New Microsoft.Office.Interop.Excel.Application 2 - wb = excel.Workbooks.Open(filen) 3 - excel.Visible = True 4 - wb.Activate() 5 - ws = New Microsoft.Office.Interop.Excel.Worksheet 6 - ws = wb.Worksheets("Sheet1") 7 - wc = New Microsoft.Office.Interop.Excel.Chart 8 - wc … | |
Re: Put an eye on [url]http://www.winzip.com/prodpagecl.htm[/url] Lola Fuertes Almost learn one new thing every day. |
The End.