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 strongm 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. alinad

    Export more then 65000 in excel

    yes it is. But access knows to spleet the excel in sheets i want to know if crystal knows i exported a with crystal a file with more than 65000, it was split but hen i want to open it excel--- NOTResponding (it worked once)
  2. alinad

    Export more then 65000 in excel

    How can i make Crystal reports to export more than 65.000 lines in excel? it does not raise any error at export, but the excel can not be opened if i try to open it with access i can see it has multiple sheets
  3. alinad

    Multiple forms

    if the form you try to close is the application startup form, than all application will close. the ideea is that the startup page should be a container for all forms. any other form needs to be open from it. so in order to work what you want, you must do another form and set it as startup, put...
  4. alinad

    I have an ASP.net application with

    Hello Rhys666! sorry for this late answer i was trying and trying. i found something to help me. because it was not a sql timeout, i used another thread that was sending information every 10 seconds, during sp execution on another thread it worked! Thanks for your time and threads ideea!
  5. alinad

    returning thin client machine name

    maybe this helps Imports System.Windows.Forms.SystemInformation i used ComputerName
  6. alinad

    Multiple forms

    the first form shoudn't be mdi. on button dim f as new form2 (the form you want to open) s.show me.close
  7. alinad

    Deploying a windows application

    the setup project will generate a .msi (in release- build with release) witch you need to instal on computers you want to run the application. the windows project will generate an exe
  8. alinad

    Distributing a WinApp w/Crystal

    i had this problem when i left a space before key. after i put the correct key it worked
  9. alinad

    Is there a Pause method or a Wait command in VB.net

    Tread.currentThread.sleep(i)
  10. alinad

    Variable control names

    yes in access thwt works because texbox has default property text abd labels have caption. so if you say textbox1="3" it will show 3 in ve.net this does't work there are no default properties you shoud do something like this: - you shoud have a function getControlByName...
  11. alinad

    how to use "Imports"?

    You should add following references CrystalDecisions.CrystalReports.Engine CrystalDecisions.ReportSource CrystalDecisions.Shared then your import will work
  12. alinad

    ADO.NET DataSet Navigation

    for k=0 to ds.tables.count for i=0 to ds.tables(k).rows.count for j=0 to ds.tables(0).columns.count msgbox (ts.tables(0).rows(i).item(j)) next j next i next k
  13. alinad

    using enter button to give next control focus

    instead of" SendKeys.Send("{TAB}") try SelectNextControl
  14. alinad

    I have an ASP.net application with

    Thanks. you losed quite a time with my problem i let you know if the solution if i'll ever find it
  15. alinad

    Beginner needs help

    you can use an global variable for entire project
  16. alinad

    How can i make a null field show up blank in the datagrid?

    Here is what i used; Dim ts As New DataGridTableStyle() ts.MappingName = "nameOfTheTableInDatasetWitchGridUsesAsDataSource" Me.grddate.TableStyles.Clear() Me.grddate.TableStyles.Add(ts)...
  17. alinad

    I have an ASP.net application with

    i put mode=inproc and timeout = 300
  18. alinad

    DataGrid Sort

    Yes it is possible try this: -let's say that ds.tables(0) is yours grid dataSource -the name of the column you want to sort is "Column" ds.Tables(o).DefaultView.sort= "Column" grid1.DataSource = ds.Tables(0).DefaultView
  19. alinad

    I have an ASP.net application with

    yes it works i even try it on a vb client and it worked
  20. alinad

    I have an ASP.net application with

    I've modified timeouts in the Internet Services Manager administrative tool in Windows 2000 also i think i've modified evrythig. i still got the problem and i don't know where to look anymore

Part and Inventory Search

Back
Top