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: *

  • Users: jmikow
  • Content: Threads
  • Order by date
  1. jmikow

    Able to Ping Internet, Not Local

    A few weeks ago I noticed that I was able to get on the internet without any problems, but all of the sudden I am unable to ping anything locally on my network. I've checked all kinds of things and nothing has fixed it. Any Ideas? I'm running Windows XP Pro SP2. Thanks! Josh
  2. jmikow

    Referenced DataSet is ReadOnly

    I have a local DataSet that is based on a referenced typed dataset that I am trying to use. The problem that I am having is that when I try to populate one of the tables in my local copy of the dataset I am getting an error stating that the table is ReadOnly. Am I doing this properly or do I...
  3. jmikow

    Accessing Viewstate from JavaScript

    Is there a way to access the Viewstate from Javascript and update it? I'm working on trying to change the color of some controls (Textbox, DropDownList, DataGrid child controls) when the data in them is changed. I have the Javascript "onchange" method working to set the color on the...
  4. jmikow

    Problem with Session Variables in Popup Window -Used to work

    I have a sub that I use to add a Pop-Up window to a button that used to work. The pop-up still appears to work properly on initial loading of the pop-up window. It populates data from the Session variables that I had set previously and everything looks good. The problem is that when I do...
  5. jmikow

    Word 2002 Web Toolbar not showing up

    I am developing a web based app for a client and I am generating a Word document that opens up in their web browser window. The problem is that no toolbars are displayed when the word doc is opened in the browser. I can't figure out how to tell it to display the toolbars. In Word 2003 it...
  6. jmikow

    For Loop to Create Single Object

    I have been working with an API for a software application that we have in our office and I am unsure about how to get past this point. The API calls for everything to be of type "Object". I have a specific part of it that i need to be able to loop through and create an object out of a string...
  7. jmikow

    DataSet not recognizing added rows

    I have a Data Adapter that fills a DataSet and binds to a DataGrid. That works properly and the datagrid displays the rows that I expect to be retrieved. I then have another button that loops through the contents of the populated datagrid and inserts the rows into a separate dataset. That...
  8. jmikow

    Changing DataGrid's DataSource based on Radio Button

    I am currently trying to get a DataGrid's datasource to change based on which item is selected in a radio button. Currently I have the code: Select Case rblETAVDataSet.SelectedItem.Value Case "O" dgrdETALNames.DataSource = DsOriginalData...
  9. jmikow

    Issue Comparing DataSets

    I have a webapp that I am currently trying to finish up and need some additional eyes to tell me what is happening. We are using 2 DataSets that derive from the same typed dataset. The reason for this is that we want to compare when individual columns change, not just a row, and make the font...
  10. jmikow

    Shortening IF Statement

    I'm wondering if there is an equivalent in VB.Net for the SQL IN statement. I currently have an IF statement that looks like If UseCode = "010" Or UseCode = "020" Or UseCode = "021" Or UseCode = "027" Or UseCode = "040" Or _ UseCode = "050" Or UseCode = "051" Or...
  11. jmikow

    Trying to not use Cursor

    I have a query that I need to construct and I'm trying to do it without a cursor, if possible. I have a table (it's actually a view) that I need to combine multiple rows so that I can retrieve a single row of data. My table is similar to the following: Col1 Col2 1234 123456789 1234...
  12. jmikow

    Error from page that doesn't exist

    I currently am trying to debug an application that I am writing. I am receiving the error below: [COMException (0x80044844): [18500] Null URL address.] HWOX.IHWSession.GetWorkitemByID(String ServerID, Int32 lProcessID, Int32 lWorkitemSequence, Boolean bIsArchive) +0...
  13. jmikow

    Keep IFrame from Refreshing

    I'm currently using an IFrame to display another website. That website has a plugin that loads when the page loads into a browser to allow the user to view an image. When I postback to the codebehind to execute some code it refreshes the IFrame every single time. Is there a way to keep it...
  14. jmikow

    Postback causing <BODY OnUnload="..."> to fire

    I have some Javascript that executes when the page is closed by clicking the "X" in the browser. It is tied to the <BODY OnUnload="..."> event. I have noticed that when I click a button on the page that causes a postback and runs server-side code that it triggers the "OnUnload" event of the...
  15. jmikow

    Migrate 2000 AD to 2003 on new hardware

    I am new to AD and am trying to pick up where someone else left off. We currently have a Windows 2000 domain (I'm pretty sure it's in native mode) running on very old hardware. We recently purchased new hardware and it came with Windows 2003 Standard. What I am looking for is a list of things...
  16. jmikow

    DataSet Binding during Postback causing issues with Logout

    I'm fairly new to ASP.Net and am still learning the ropes. I have a DataList that is populated by a DataSet with results when doing searches on a web page. In the Page_OnLoad subroutine I have : If Not Page.IsPostBack Then PopulateContacts() 'Only populate the contacts...
  17. jmikow

    Merge Replication Identity Issue

    I have been working on setting up replication and I now realized that I need to have merge replication instead of transactional for a single table. I have rebuilt my publications so that the transactional pub does not have the one table and created a merge pub for that table. The table has an...
  18. jmikow

    Query interpreting single quote as

    I have been using a variable to create my select statement in ASP.Net using VB.Net and recently it started adding an additional "'" after each "'" that I had in my code causing it to send a "''" when it executes the code. Below is the code I use to generate my sql statement: stmt = "select...
  19. jmikow

    Using xp_fileexists with UNC path

    I am trying to get a query to run which calls the xp_fileexists function to see if a file exists. I am trying to pass a UNC path and concatenate that with one of the columns of data, but I keep getting an error at the "\" character for UNC or the ":" character for my local drive. Can someone...
  20. jmikow

    Convert code to SQL Sp or Function

    I am working on optimizing a query that will need to be run from a search page on a web app we are developing. I have created the code below in the .vb file for our search page and it can easily handle the different types of searches and parameters I need to setup based on the user's input. My...

Part and Inventory Search

Back
Top