638 Posted Topics

Member Avatar for el_vala

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 …

Member Avatar for codeorder
0
436
Member Avatar for CodeLearner
Member Avatar for krishniha

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

Member Avatar for lolafuertes
0
99
Member Avatar for jamesvick

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 …

Member Avatar for jamesvick
0
162
Member Avatar for mimosa9618

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

Member Avatar for lolafuertes
0
180
Member Avatar for madlan

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). ' …

Member Avatar for madlan
0
96
Member Avatar for zela

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 …

Member Avatar for lolafuertes
0
150
Member Avatar for dhtguru

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 …

Member Avatar for lolafuertes
0
99
Member Avatar for CallumP93

Read [url]http://msdn.microsoft.com/en-us/library/ddck1z30(VS.71).aspx[/url] Hope this helps

Member Avatar for lolafuertes
0
69
Member Avatar for lucaazori

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 …

Member Avatar for lucaazori
0
96
Member Avatar for shinypenguin

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 …

Member Avatar for lolafuertes
0
131
Member Avatar for ryan311

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

Member Avatar for lolafuertes
0
76
Member Avatar for alonso_siang

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 …

Member Avatar for alonso_siang
0
103
Member Avatar for codedude

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.

Member Avatar for codedude
0
218
Member Avatar for theorus

Just guessing you also need to define the Insert, Delete and Update commands for the OleDbDataAdapter before trying to use them.

Member Avatar for theorus
0
121
Member Avatar for bettybarnes

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

Member Avatar for lolafuertes
0
119
Member Avatar for dre-logics

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 …

Member Avatar for lolafuertes
0
654
Member Avatar for Phenneger

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 …

Member Avatar for Phenneger
0
94
Member Avatar for angel392004

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) …

Member Avatar for lolafuertes
0
135
Member Avatar for perryg30313

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

Member Avatar for lolafuertes
0
97
Member Avatar for bustersox

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 …

Member Avatar for lolafuertes
0
278
Member Avatar for vampke

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 …

Member Avatar for lolafuertes
0
103
Member Avatar for Savanah

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 …

Member Avatar for Savanah
0
110
Member Avatar for trpsjt2008

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 …

Member Avatar for trpsjt2008
0
88
Member Avatar for danielagaba

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 …

Member Avatar for lolafuertes
0
457
Member Avatar for technogeek17

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]

Member Avatar for lolafuertes
-1
123
Member Avatar for andy1510

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 …

Member Avatar for lolafuertes
0
95
Member Avatar for Kingcoder210

Maybe you can create a custom query for the data you want to filter, and use it as datasource

Member Avatar for lolafuertes
0
99
Member Avatar for SMIFMD

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 …

Member Avatar for lolafuertes
0
172
Member Avatar for bondi007

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.

Member Avatar for lolafuertes
0
145
Member Avatar for bejoy.baby

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. :)

Member Avatar for redback93
0
1K
Member Avatar for lara_

Seems related on how SQL handles the severity level. ([url]http://msdn.microsoft.com/en-us/library/ms178592.aspx[/url])

Member Avatar for lara_
0
183
Member Avatar for migz.natividad

This can be an starting point: [url]http://www.microsoft.com/learning/en/us/default.aspx[/url]

Member Avatar for zakben1
0
73
Member Avatar for JohnDove

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.

Member Avatar for lolafuertes
0
143
Member Avatar for blackknight469

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.

Member Avatar for lolafuertes
0
93
Member Avatar for songweaver

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 …

Member Avatar for kplcjl
-1
163
Member Avatar for markperfinan

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 …

Member Avatar for markperfinan
0
384
Member Avatar for marmam

Put an eye on [url]http://www.winzip.com/prodpagecl.htm[/url] Lola Fuertes Almost learn one new thing every day.

Member Avatar for lolafuertes
0
78

The End.