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 TouchToneTommy 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. neegottlob

    propblem opening an existing project in Visual Studio 2005

    Yes you are right.. I didn't try that one..... Thank You, Georgi
  2. neegottlob

    propblem opening an existing project in Visual Studio 2005

    Thanks J Actually as I know that project is also made in VS 2005. I've already tried all that open stuff and it did not open.. The same err all the time. Hope the problem is nto that I have bot VS 2002 and VS 2005 installed. Thanks, Georgi
  3. neegottlob

    propblem opening an existing project in Visual Studio 2005

    Hello everyone, I have a project mady by someone else and I have to do some extra stuff on it, BUT I receieve the err : when I try to open the solution? What should I do to go through that and to open that project? Every advice is welcome. p.s. I have Visual Studio 2005 Profesional Thank...
  4. neegottlob

    Help: _blank window with exact size

    No the size worked. But the window didn't close when I leave it.
  5. neegottlob

    Help: _blank window with exact size

    Thanks, but it didn't work out. I've tried: function window_onload() { window.resizeTo(500,350) window.resizable=false } return window_onfocusout() { window.self.close } function window_onblur(){ self.close } but the same.. Thanks:)
  6. neegottlob

    Help: _blank window with exact size

    Hello, Kind of stupid question but I would need some help if you can:) I have a GridView control and a template hyperlink field in there. I wold like when I click on the hyperlink to open a _blank window or something like popup with exact size for example 400x400 and when i leave the window -...
  7. neegottlob

    Problem with: Add New record in GridView

    Thank you:) If somebody accidently comes to that question the answer is: It was hard to believe that gridview doesn't have own way to add new record so I had to use dataview or formview or whatever that can be called from: Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e...
  8. neegottlob

    Problem with: Add New record in GridView

    Hello, First of all that might be kind of a stupid question but I really need it:). Here it is-->I have tried to insert new record in gridview but when I click on the "NEW" - link button, I just do nothing. So i've looked all arround and didn't find something that can help me. All the help code...
  9. neegottlob

    Problem with sorting in both direction in GridView

    thanks, Isadore.. i've solved it: #region GridView Code private string GridViewSortDirection { get { return ViewState["SortDirection"] as string ?? "DESC"; } set { ViewState["SortDirection"] = value; } } private string GetSortDirection() { switch...
  10. neegottlob

    Problem with sorting in both direction in GridView

    Hello, this is my code: <script runat="server"> Dim authors As New DataSet() Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) ............ End Sub Protected Sub GridView1_Sorting(ByVal sender As Object, ByVal e As...
  11. neegottlob

    GridView populate

    Hi :) I've tried this: Dim command As New OleDb.OleDbCommand("SELECT [FName], [SecondName], [LastName], [phone] FROM [Member]", connection) No difference :( best regards, Georgi
  12. neegottlob

    GridView populate

    Thanks for the replay! Yes the reult is only the Grid Header and if I change the: DTable.Columns.Add(New DataColumn("FName", GetType(String))) with: DTable.Columns.Add(New DataColumn("asd", GetType(String))) I recieve err like: Column 'FName' does not belong to table . Description: An unhandled...
  13. neegottlob

    GridView populate

    Hello, I've tried to populate my gridView from a database. The program starts but Gridview1 is empty. There is something wrong with tha way I build my dataTable I think. Hope somebody can give me advice or write any kind of a solutin. Thank You! p.s. Fname, SecondName, Phone, Lastname are...
  14. neegottlob

    Data type mismatch in criteria expression.

    but now it happens something strange: for example a node in Depth=1 has 2 child nodes it double the Parent node too, o if they are tree so it makes 3 parent nodes with tha same name.. Any Idea why is that?:)
  15. neegottlob

    Data type mismatch in criteria expression.

    I Solved the problem. It was in the select I've jumped one table over in the relationship and now it is ok. Thank you!
  16. neegottlob

    Data type mismatch in criteria expression.

    Oh I've forgot. I've tried: Dim command As New OleDb.OleDbCommand("Select Produkti.ProdID,Produkti.ImeProd From Produkti" + " Inner Join Kategoria on Kategoria.CategorID = Produkti.CategorID " + " Where Kategoria.CategorID = " + CategorID, connection) And it didn't work Gave mi kind of query...
  17. neegottlob

    Data type mismatch in criteria expression.

    Hello, what I am trying to do is a dinamyc treeview that take the source form a AccessDatabase. But I recieve that err: And here is the part of the Source: Private Sub FillTitlesForAuthors(ByVal node As TreeNode) Dim CategorID As Integer = node.Value Dim connString As String...
  18. neegottlob

    How Can I make that?

    it is BOTH:) What exactly do you want to explain:) This is the ASP source but I do not know how to put the NAVIGATION that should be like i explained above. Private Sub Node_Populate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.TreeNodeEventArgs) If...
  19. neegottlob

    How Can I make that?

    Hello, I have to make a treeview dinamically taking the source from the database. So I made that but I would like to make the nodes to follow the urls - the treeview should be a kind of a sitemap too because the same database is used to fill gridview controls that are related one after another...
  20. neegottlob

    Free forum for asp.net 2.0

    Btw have you fully installed any form por asp.net because I reach a lot of problems during instalation?

Part and Inventory Search

Back
Top