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 Mike Lewis 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. mcbigj

    Stop My Documents Sync

    Hello, Not too good with Win 2003 Server, but I had it up, as a domain controller and had redirection for My Docs folders to the server as part of a group policy. Well I've removed the server to be used as a file server else where. When I did this, on the client machine, I took it off of the...
  2. mcbigj

    Pre-selecting a Value in a Combo Box

    I just found the solution. It appears my VB.Net solution while it works, may be overkill. Here is how I did it in C# int index = comboBox1.FindString(textBox2.Text); comboBox1.SelectedIndex = index; Hope this helps someone else. John
  3. mcbigj

    Pre-selecting a Value in a Combo Box

    Hello, I'm doing a Windows c# app and I on the FormLoad() event I need to set a combo boxes selected item based on a value I pass it. I load the value from the database, it exists in the combo box as a value, so I need to set the combo box to display this value without it being manually...
  4. mcbigj

    Add item to table field Based on another Field

    Thank you. I will give this a try
  5. mcbigj

    Add item to table field Based on another Field

    PHV, I don't need the SQL syntax, what I'm looking for is after I hit a button on the form, the Code in the Mod for accessing the MS ACCESS tbl and then checking the value and then running the function if necessary. sorry if I'm confusing here. I need to see something like Dim rs as new...
  6. mcbigj

    Add item to table field Based on another Field

    Thanks, PHV, but what I need to know is how to Access the ACCESS Table I want to work with in VBA and then to loop through it, do i need to put it in a recordset, or what? What I really need is the correct Syntax for this. Thanks again.
  7. mcbigj

    Add item to table field Based on another Field

    I have to do one of many calculations based on that number, so it would be an: If item = val1 then docalc1 elseif item = val2 then docalc2 elseif item = val3 then docalc3 endif and the docalc is going to be a few lines of code in a function, so I thought I'd need to do this in VBA mod...
  8. mcbigj

    Add item to table field Based on another Field

    Hello, What I need to do is the following: I've added an extra number field to an existing Access table. I need to loop through the table and based on an existing numerical fields value, perform a calculation on the value and place the new value into the new number field. So...
  9. mcbigj

    Placing image in Access Report

    Yes, and I just figured it out. In the event Procedure for the Format Event under Details I set the image.picture = [fieldname] and it worked. Had to do a little error handling if image doesn't exist. Hope this helps others.
  10. mcbigj

    Placing image in Access Report

    I need to place images in a report based on a field called "Path" which holds the path to the image. Is this possible? Thanks in Advance, John
  11. mcbigj

    dynamically placing Image on Report in Access

    I need to dynamically place images on a report based on a field marked "Path" which provides the path to the image. Can this be setup on a report in Access? Thanks in Advance, John
  12. mcbigj

    How can Select a Value in a select box with Javascipt

    No, what I want to happen is the javascript ADD the selected part to the code, OR have the California selected by using the javascript. so the selected will not be in the option box when the page loads, but then javascript gets called which passes a value like "California" and sets the selected...
  13. mcbigj

    How can Select a Value in a select box with Javascipt

    Hello, How can I select a value in a select box in javascript? For instance: <select> <option>California</option> <option>Nevada</option> </select> I want javascript to basically add the html function "selected" to the option box based on a query I have. So if "CA" was returned, I'd want...
  14. mcbigj

    Problem copying solution to another computer

    Hi, I'm building an asp.net project, works great, but I'd like to be able to work on it from my laptop as well. so I copied all the web files, then the solution file, then configured IIS to point to that folder. I can open the solution, build the solution, but when I press play, there is an...
  15. mcbigj

    Problem When checkingout in Interdev and SourceSafe

    Hi, The problem I am encountering, is that I vpn into my company,, and I can connect to a project in interdev no problem. But for some reason it doesn't ask for my username and password. Now here's the weird part.. I try to check a page out,,, all seems to work, but no checkmark appears...
  16. mcbigj

    How to set scroll position in a textbox

    I'll look at that thanks. The problem is though, I should have mentioned, is that I actually want the selection to be in the middle of the textbox. What happens now, is when I do textbox1.ScrollToCaret for instance, if the caret is below the visible textbox area, it scrolls to the point but...
  17. mcbigj

    Obtaining Label control text alignment

    Hi, I'm looking at the code that thatrickguy used in order to add functionality to a control. It may help me with what I'm doing. I'm looking to be able to set the scroll position in a textbox. Unfortunately the textbox control does not include an .Autoscroll function which would let me...
  18. mcbigj

    How to import text data to a specific textbox

    Try using the System.IO.StreamReader object to open the file. then use one of the methods (readline, readtoend) to get the data and plug into your textbox
  19. mcbigj

    How to set scroll position in a textbox

    Hello, I'm trying to set the scroll postion in a rich text box. Unfortunately the richtextbox control does not include the autoscroll method where I could set the x and y points and have it scroll to that position. I assume I need to inherit or implement another control or something like...
  20. mcbigj

    Remote Desktop to Private IP

    Hello, I need to remote desktop to a computer that is behind a router that assigns the computers private IP's 192.16.... . So I figure I just need to "forward" from the router to the proper port or set up a DMZ or something. Can anyone give me an idea of which port I need to use? Or if I'm...

Part and Inventory Search

Back
Top