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 Chriss Miller 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: TipGiver
  • Content: Threads
  • Order by date
  1. TipGiver

    Related tables / binding sources and DataGridView ComboColumns

    Hello everyone, i need some help! [VS2010 PRO, 4.0 framework] I have 2 tables in a dataset1 and they are 1-to-many related. So one record from TableRegions (parent) may have many related records (children) on TableTowns. Yes, there is a ForeignKey constraint. TableRegions = [ID, region]...
  2. TipGiver

    Show folder contents in webbrowser control and only that

    Hello everyone, (2005 version framework 2.0) I use a webbrowser control and i have set the url to "c:\". This shows me the contents of C: drive but when the control gets enough width, the common blue column/sections appears at the left. This with the sections "file and folder tasks", "other...
  3. TipGiver

    Communicate with SQL db and share in LAN

    Hello, I have a windows application that runs fine. Now i decided to share the application though a lan with other personal computers. I have made the output folder shared and i can access it from an other computers in the network. The application runs but it crashes when it comes to communicate...
  4. TipGiver

    Recursion is not working properly

    Hello. Firstly, let me tell you want i want to do. I give a folder (directory -d) as an argument ($1), and i want to know what is the most recent file in every folder. The $1 folder may have many folders inside and files, the sub-folders can have other sub folders and other files, and so on. So...
  5. TipGiver

    Get 1st sentence with regex

    Hi everyone. I would like to get the 1st sentence of a variable. This php variable actually has html text saved in it. Previously i have use the combination of the functions strpos and substr to get the text untill the '.' The problem with that is that if for example there is an image tag...
  6. TipGiver

    Double border Line ?

    I use the Line Tool or the Connector Tool to connect 2 shapes (they have connection points). I am trying to make the line to have double body. Instead of one line, to have 2 lines in parallel, very close. Hope you understood what i mean ! Thank you
  7. TipGiver

    Sorted list or something else?

    Hello everyone. I need to have some data in pairs. They are both numbers Cost: Int16 Pos: UInt16 The unique is the "Pos" but i need to have them sorted by the "Cost". Many pairs may have the same Cost. I am playing around with the SortedList(of UInt16, Int16). The problem is that it doesnt...
  8. TipGiver

    regular expression

    Well i havent found yet how to do the following with a regex. So here it is: Allowed letters are A,B,C,D and E. How can i match exaclty three different letters? Example: ABC, DEB etc should match. The next ones shound not! ABB (B is 2 times), ABF ('F' is out of A-B), ABCD (there are four, not...
  9. TipGiver

    Cannot import the header

    Hi all This is more of less a continuation of the "writing a book using word" thread. I have a problem. In a file (say file1.doc) i have a header (marked as headr and located at header position). I load this file in the "book.doc" (doc that will contain all the seperate chapters) using the...
  10. TipGiver

    Writing a book using Word

    Hello I am about to start writing my book. I will be using Word 2003 or 2007. I think mostly of the 2007 because it does better formattings. The book will have everything... introduction, TOC, some words for the purpose of the book, chapters, solved exercises, appendices, bibliography, etc...
  11. TipGiver

    <dump question> Framework and SPs

    I have the v2.0 (22.4 MB) and the v2.0 SP1 (23.6 MB) Frameworks. Do i need to instal the v2.0 firstly and then the Service Pack 1, or straight ahead the SP1. I am creating a DVD with Windows XP, its SP2, some hotfix and i am adding the .NET framework. Thanks
  12. TipGiver

    Showdialog executes but dont show up

    This is the form i want to show as dialog. Private Sub SplashForm_Shown(ByVal sender As Object, ByVal e As System.EventArgs) _ Handles Me.Shown Application.DoEvents() If (Me.isSplash = True) Then Dim mf As New Global.Dialogs.MainForm Dim...
  13. TipGiver

    Dispose before leaving ?

    I have this: Private Function CreateBuffer(ByVal cmd As Byte) As ArrayList Dim _b As New ArrayList _b.Add(cmd) Try Return (_b) Finally _b = Nothing End Try End Function How can it dispose the _b before getting out of...
  14. TipGiver

    Draw with transpency

    Hi, I draw on a Panel using its .CreateGraphics. I draw an arc using the .DrawArc witch accepts a rectangle. The code: Private pen As New dw.Pen(Drawing.Color.Blue, 3) Dim rect As New Drawing.Rectangle(0,0,100,100) g.DrawArc(pen, rect, 0, 90) The "g" is the .creategraphics of the...
  15. TipGiver

    Call a method from other place

    Hi and Merry Xmas! It is much time that i left high level programming (i was dealing with microcontrollers and assembly) and i need help. It is simple, i know the solution which is delegates, but i cant get it work. So. I have a usercontrol that has a button. The control is... on a form. The...
  16. TipGiver

    help on header and footer text

    I wuold like to know 2 things: 1. I have some chapters and each one has a tilte. I want this title to appear as header. 2. I want to have page numbering with "i" style untill chapter one, and real numbers from chapter one and on. Thanks for any hint
  17. TipGiver

    Creating a forum - "Best way" - (no code)

    Hello to all. This is not a request for help (code, etc) but rather a "what is the best way". So, getting started, i would like to read your opinions for some questions. I'll number the questions and also write my opinion too. So: #1. Activity since last visit I would go with cookies. Is...
  18. TipGiver

    (2.0) GridView and BLL ?

    In my previous thread thread855-1349928 ca8msm helped me to accomplish a part. This now is quite similar. I can get the fields from the db sane way.. have the datasource auto-generated as i drag and drop the table from the server explorer. Some fields are encrypted. I need to show them...
  19. TipGiver

    (2.0) get GridView item

    Hi, I am working on this since yesterday, and i cannot seem to get it working. I have a sqlDatasource and a GridView bound to it. I also have a button appended at the end. In the RowCommand event handler i may know what was the rowIndex of the button that i clicked on (e.CommandArgument). How...
  20. TipGiver

    Create ms-SQL database

    There is an old thread started by me: thread796-1205618 The database had only 2 tables. Below is shown what i got by using the ms-sql server management studo express, when i right clicked the table and selected script table as -> create to. I would like to know: I want to create...

Part and Inventory Search

Back
Top