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

    HTML Element Text not set correctly

    While I am quite sure this stupidly simple (and I think I dealt with it before) my brain is currentlt fried so I am asking for assistance. On my html/js page I have a simple <span> tag which during actions on the page (no reload or refresh) gets a text value... From - <span id="eleText"...
  2. IjumpOverU

    USB Barcode Scanner Stops Functioning

    A friend I help out with basic IT at his small business has a barcode scanner setup for when people come in (so they can easily check-in). It is setup as a keyboard wedge scanner, and works for a little while (usually 1-3 days) but then just seems to shut off. Even if I unplug it for a minute...
  3. IjumpOverU

    .Net Control Event Not Firing When Run In WPF Control

    I have a .Net control that I wrote and have refrenced it and placed it on a WPF window (in a WindowsFormHost control obviously). My control has a load event, that does some basic data retrieval to load a couple combo boxes. However when it loads in the WPF window the event does not fire and...
  4. IjumpOverU

    Subreport in a subreport data problem

    I am trying to write a report that has a subreport within a subreport. The bigger problem is that the data I need to return for the second child (subreport) is dependant on the data returned by it's parent dataset. This means I need to fetch and return that data set once for each record in the...
  5. IjumpOverU

    Keeping cursor position in text box

    I have a control that uses the base textbox control. On the text changed event I do some validation and sometime changed the text that was entered. However when I do this it always sets the cursor in the text box to the beginning of the test (even if the last character was entered at the end or...
  6. IjumpOverU

    Variable as column name in SELECT statment

    Is there any way to use a variable as a column name in a select statement? Example: DECLARE v_col_name VARCHAR2(40); v_value VARCHAR2(80); SELECT v_col_name INTO v_value FROM table_name; This is of course a valid sql statement, but I do not want the column name selected into the value...
  7. IjumpOverU

    Error opening recordset returned in xml

    In one of my programs we query a database through COM+ and return a recordset in xml format. The problem also only occurs when more than approximatly 10,000 records are returned. When it runs on a 2003 server the following code generates an error: try { http = new...
  8. IjumpOverU

    Launch IE with no toolbars?

    Is there a way to launch internet explorer from VB.Net and hide all of the standard toolbars? I want to hide the address bar, navigaton buttons and menus. I know this is possible via java script but would not know how to incorperate it into vb. Currently I am using the following code: Dim...
  9. IjumpOverU

    Windows.Forms.Label Transparent Background

    I think I'm just dumb and I have searched other threads about this topic. I cannot for the life of me figure out if and how to get the background of a standard Windows.Forms.Label to be transparent. I looked up the MSDN article but that seems to be only for a form or a user created label...
  10. IjumpOverU

    Dropdownlost always on top

    I am trying to setup and "editable" combobox by overlaying a text box on a dropdownlist. My problem is no matter what I do the dropdownlist is always on top of the text box. I tried using the send to back function and tried resetting the z-order manually in the HTML. What the heck is the...
  11. IjumpOverU

    Transparent Backcolor

    Try not to laugh at this question but how in the hell do you set a label's backcolor to transparent. I tried selecting transparent from the Web menu of the backcolor selection and it does nothing. Please take pity on this dumb programer and help out. Thanks!!
  12. IjumpOverU

    Problem with enableViewState

    I have a page that has two combo boxes, each has a good bit of data in it that is retreived from a database using a com recordset (I can't use the .Net DataSet). Anyway when a list grows long enough I get an error "Invalid length for a Base-64 char array", after I select a new value from either...
  13. IjumpOverU

    invalid length for a Base-64 char array error

    I get this error when trying to run the page on a windows mobile device. I did some research and it seems to say that I will get this error if my viewstate exceeds 2k. This probably does occur since I am using drop down controls. Is there any way to avoid this or manually manipulate the view...
  14. IjumpOverU

    Check value of CheckBox in Excel

    How would I determine if the check box that triggered an event is selected or not. I thought if I used Sheet2.OLEObject("CheckBox1").Objects.Value this would work, however it does not recognize "Objects" as valid?? Help!
  15. IjumpOverU

    Cannot Debug Form

    When I try to debug my asp.net form I always get an error before the form loads it says: Auto-attach to process '[3904] w3wp.exe' on machine 'RESSLERD' failed. Error code 0x80070005 (Access is denied. ). I have no idea why. This is all contained on my server, which I obviously am an...
  16. IjumpOverU

    Allow Typing but Restricting selection in a combo-box

    How would you allow typing in a combo box wihtout allowing an entry that is not in the list. I know that you can do this with a vbComboDropDownList in a standard combo-box, but this does not allow you to &quot;filter&quot; beyond the first chanracter. I'm looking for something kind of like you...
  17. IjumpOverU

    Calling cmdButton_Click Sub from code

    Is there any way to call a standard button click sub from within code. Each time I try to call this it says it expects and &quot;=&quot;. Basically I the code I have in the button click sub I would like to use on UserControl_Initialize also and don't feel the need to copy and paste if I can...
  18. IjumpOverU

    Mapping Problem HELP!!!

    OK I appologize for the repeated posts, but I know of no other place to ask these questions. I am having a problem trying to map two simple xml documents. The structure of the documents is identical, and I am just mapping them one for one except using a uppercase functiod on the first field...
  19. IjumpOverU

    Mapping A Constant Value

    In the Mapper how do you map a constant value to a destination field? I have tried using a Script but it always fails when being translated. Thanks Again!!
  20. IjumpOverU

    Do I Need BizTalk Orchestration??

    First I am very new to the BizTalk world, so bear with me. I am trying to simply move an XML file from a system I helped devlop to SAP. I have setup all of my documents, ports, channels and maps. I just do not know how to make BizTalk pick up the file and process it to the SAP adapter. Any...

Part and Inventory Search

Back
Top