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

    Creatin Seq Numbers in a datagrid view

    can any 1 help i am trying to create a seq number in a datagrid view. the code i have @ the moment is for intIndex = 0 to objViasDS.tables("Vias").rows.count - 1 is isdbnull(objViasDS.tables("Vias").rows(intindex).item("Vias Seq") then objViasDS.tables("Vias").rows(intindex).item("Vias...
  2. allanmc10

    Refreshing Datagrid view froma another form

    I have created a form which i add data and update through stored procedures, but when i close this form i would like to refresh a datadrid view on another formto show the data that i have updated all help welcome Big al
  3. allanmc10

    Reordering Columns in datagrid view

    I am loading into a datagrid view a tbl from SQL server through stored procedure and also i have added extra columns throught the datagrid itself i.e btn column and 2 checkbox colums. How do you put the columns in order that you want. i.e columns i added into datagrid view to come after...
  4. allanmc10

    Trail Code

    Hello fellow programmers I am hoping you can help i am looking for Vb.net app to have a 30 day trail. Is their any 1 that can point me in the roght direction on help with some code for 30 day trail Cheers Big Al
  5. allanmc10

    Hide & bring back form

    I am pressing a btn and showing a form but i want to hide the form the btn is on and when i close existing form, main form comes to the front. Any ideas???? Cheers big al
  6. allanmc10

    Clearing txt fields in tab control

    I have set up a Tab Control with lots of txt fields and when i click a button i want to clear the txt fields Is their anyway that i can do this like in a for loop or do i have to call each individual txt field. Cheers big AL
  7. allanmc10

    leaving cell in datagrid view

    Evening when i am leaving a cell in a datagrid view i want add a record to a sqldatabase through a stored procedure. i am having a lot of troub;e with this and really is starting to do my head in. here is the subprocedure for the stored procedure which is working fine Private Sub...
  8. allanmc10

    DataGridView Cell

    i would like to set the properties of a cell to have the text UpperCase. How can i do this?????? cheers big als everybodies pal
  9. allanmc10

    Local SQL Connection

    i am writing an app that needs a local connection but keeps getting this error (An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote...
  10. allanmc10

    CurrentCellChanged

    have set up a datagridview in 2005 with the event (CurrentCellChanged) to perform calculations. i am updating through stored procedures in SQLServer 2000. If the datagridview has 2 rows in then it updates no problem but if the datagridview has 3 rows in it the program crashes out and tells...
  11. allanmc10

    DatagridView.CellClick

    i am trying to single out 2 cells in a datagridview row so i can add additional data into them. i used the event DatagridView.CellClick but evrytime any cell in the datarow is clicked it brings up the information i want but i only want this to happen in the 2 cells not all cells Any help...
  12. allanmc10

    Please help

    i am dieing fast here, i have hit a brick wall. Is their anyway that the datagridview in vb.net 2005 can do multiplications i need help fast big al everybodies pal
  13. allanmc10

    Multiplying 2 columns in datagridview

    i am trying to multiply to decimals in a datagridveiw to give me a total. Code dgSRLevel.Item(9, dgSRLevel.CurrentRow.Index()) =(dgSRLevel.Item(6, dgSRLevel.CurrentRow.Index()) * dgSRLevel.Item(8, dgSRLevel.CurrentRow.Index())) i have tried numerous ways of converting to decimal but keeps...
  14. allanmc10

    Debugging Classes

    I am writing a program that contains classes. the classes are a seperate app but are added buy references (dll file). i have a problem with 1 of the classes and would like to debug when my main app is running but not letting me any1 advise on the right direction to go regards big al...
  15. allanmc10

    Windows generated code

    Hi feel like a dummy here, but going to ask question anyway. I am adding a new form to my application but the Windows generated code is not appearing, it is like it is hiding. Can any1 tell me if you can hide the code if so how do you unhide it a s ineed to use code in the constructor...
  16. allanmc10

    Vb.net Deployment (Autorun)

    Have just completed an application and would like to dweploy the software on CD with autorun i have tried using batch files getting somewhere but not fast Can anyone point me in the right direction i need to install windows installer 3.1 .net framework 2.0 my application SqlServer2000...
  17. allanmc10

    Datagrid new line

    Alright folks having a bit of a problem with a datagrid. i set up the datagrid as read only = false to start with then using tablestyles set some columns as readonly = true. When i first insert a new row into the datagrid it actually shows 2 lines but only 1 line is active, which i want but i...
  18. allanmc10

    Datagrid tab out

    i use a datagrid to calculate 2 colums together, the Event for the datagrid is CurrentCellChange which is working fine also i have some colums read only i am testing my program and when i tab throught the colums at the end the program crashes, is their anyway i can stop the program crashing.
  19. allanmc10

    Formatting Decimals Numbers

    hi all i have created an invoice, but i would like to format totals to 2 decimal places. Is their a function that can do this or how would i fomat decimals??? rgrds allan
  20. allanmc10

    Datagrid multi line highlight

    Alrighty is their an event that will let you highlight multi lines in a datagrid so i can pass to a txtbox for a invoice set up. Else how do u loop round a datagrid, i take it will be the same as the dataset. cheers allan

Part and Inventory Search

Back
Top