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 SkipVought 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. bharons

    Pick up value from combobox

    hello experts... I have a combobox containing data which is a column of a table. So far I have used code like this: Public column_name, column_name1, column_name2, column_name3, column_name4, ; column_name5, column_name6, column_name7, column_name8, column_name9 if...
  2. bharons

    The conversion of the varchar value '1111224080294' overflowed an int column

    to detect my column at my table i used this coding : Use In (Select('crsResult13')) TEXT TO m.lcSQL1 TEXTMERGE noshow SELECT COL.name AS ColumnName, TYP.name AS DataTypeName, COL.precision, COL.scale, COL.is_nullable, COL.is_identity, TYP.max_length AS MaxLength, TAB.name AS...
  3. bharons

    The conversion of the varchar value '1111224080294' overflowed an int column

    thanks, mr. Mike. with out any cast function it work properly.. i mean by my code that i store set value to ?m.lcValue, i store cast function are fine to use or not.
  4. bharons

    The conversion of the varchar value '1111224080294' overflowed an int column

    are this coding fine to use : local lcValue, lcValue1, lcValue2, lcValue3, lcKeterangan lcValue = thisform.text1.value && No Pengajuan lcValue1 = trim(thisform.text3.value) && No. Rekening TEXT TO m.lcSQL TEXTMERGE noshow UPDATE dbo.jaminan SET norekening =...
  5. bharons

    The conversion of the varchar value '1111224080294' overflowed an int column

    Dear Expert.. I don't know if I post this question in the VFP forum or the SQl Server forum. because I use vfp 8 with Sql Database back end, so I asked in this forum... I have code like this below: local lcValue, lcValue1 lcValue = thisform.text1.value && No Pengajuan lcValue1 =...
  6. bharons

    Find the location of the column in the VFP table

    i used vfp 8, i got error missing ")" on statement:unsure:
  7. bharons

    Find the location of the column in the VFP table

    my crsResult3 is cursor.
  8. bharons

    Find the location of the column in the VFP table

    thanks, teacher... i mean Expert..😇 it work on my form 🥰, i gain in 2 column, then i use field() function to determine name column is
  9. bharons

    Find the location of the column in the VFP table

    I put the lnColumn result in textbox3 with the final result 0, what does the value 0 mean
  10. bharons

    Find the location of the column in the VFP table

    If I browse crsresult3 several columns and their contents will appear. What I'm asking is in what column the data I'm looking for is in the column. below is an image of the crsResult3 table [img https://res.cloudinary.com/engineering-com/image/upload/v1723560942/tips/Capture1_virntg.jpg] if I...
  11. bharons

    Find the location of the column in the VFP table

    Dear Expert.. I have a classic question. and I don't understand how to solve it, namely looking for a column where the contents of that column are exactly the same as the VFP textbox. The following is the coding that I use. select crsResult3 lcVar = thisform.text1.value for lnColumn = 1 to...
  12. bharons

    selected value from grid to another grid

    now i understand about to set order based on header click code.. thanks expert.. Chriss and Mark..[afro2]
  13. bharons

    selected value from grid to another grid

    Hey experts, it seems my question is classic. I have code like below. select * from crsresult where alltrim(thisform.text1.value) = thisform.text2.value into cursor 'crsResult1' where textbox1 and textbox2 come from the afterrowcolchange grid, ie LPARAMETERS nColIndex thisform.text1.value...
  14. bharons

    handle column count Grid on VFP

    oh okay thanks Chriss. for advise. [love2]
  15. bharons

    handle column count Grid on VFP

    i don't know about (m.) is, i just copy it.[ponder], i think (m.) is kind like symbol memovariable. by the way can i call statement to open sql server database with script in vfp like below. Local KONEKSI, lnResult STORE SQLCONNECT('murya1','murya2','murya3_database') TO KONEKSI lnResult =...
  16. bharons

    handle column count Grid on VFP

    thanks.. Chriss for suggestion.[bigsmile]. Regarding m identification or the letter m in front of lcValue, I just copied the writing from a question in the SQL Server Development forum. i mean infront ncolindex ..[smile2], also i cant store anchor property at my grid, in Mark or Chriss Grid are...
  17. bharons

    handle column count Grid on VFP

    thanks Chriss its done.. i just forgot the last code.. LPARAMETERS nColIndex thisform.text2.Value = EVALUATE(this.Columns(m.nColIndex).ControlSource) Local lcSQL1, lcValue, lnResult lcValue = EVALUATE(this.Columns(m.nColIndex).ControlSource) Use In (Select('crsResult1')) TEXT TO m.lcSQL1...
  18. bharons

    handle column count Grid on VFP

    I have thoughts that deviate from the topic. How do I add a double click event to the code provided to call another table cursor based on the contents of the cell value, below my code. LPARAMETERS nColIndex thisform.text2.Value = EVALUATE(this.Columns(m.nColIndex).ControlSource) Local lcSQL1...
  19. bharons

    handle column count Grid on VFP

    I got goosebumps when I saw this answer, actually this is what I was looking for. Thank you for your time and understanding in helping me learn about VFP grids.[love2][love2]
  20. bharons

    handle column count Grid on VFP

    Hay Mark, your suggestion is near that i want, show all data in single row that column or row i have been press. my question is just simple. that textbox2 changes along with one of the rows of data I press, not based on a particular column or row in the grid? wherever the row and column I press...

Part and Inventory Search

Back
Top