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 Wanet Telecoms Ltd 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. Govnor

    UserControl to reload page it's in?

    Hi, Firstly when you said page I am presume this is a ASP.NET page with C# server side code. You cannot force the client side to refresh from the server side, unless you provide response upon request. The method to refresh from the client side is <HEAD> <META HTTP-EQUIV="Refresh"...
  2. Govnor

    app.config values not reflecting changes after deployment?

    We have applications which use ClickOnce deployment, and I'm sorry to say the only way that we know here is to redeploy a new version with the config changes. We did spend quiet a bit of time investigating this issue, but never found a solution, the only way to make your config change copy...
  3. Govnor

    app.config values not reflecting changes after deployment?

    This total depends on how you are deploying the application. Are you using ClickOnce deployment in VS2005? THE GOV' NOR
  4. Govnor

    Skipping first row in a query?

    Hi, You could place the data into a temp table first then update that temp table to fill in the gaps. after select the temp table for the results use Indentity(int 1,1) if you need to get around rownum select Indentity(int 1,1) * INTO ##temp_any_table_name from your_table_name hope that...
  5. Govnor

    Web custom control handling events

    Hi, I have started creating a navigation control using a web custom control. My navigation control consists of 5-buttons vertical aligned. i.e. BUTTON1 BUTTON2 BUTTON3 BUTTON4 BUTTON5 What I WANT to happen is when I click one of these buttons the buttons move apart and links are displayed...
  6. Govnor

    Execute a stored procedure based on system clock ?

    You could create a executable .bat file and then create a schedule task to run every day @ 15:30 Step 1 Take the content of the stored proc (exclude the declaration to create a stored proc) and create an .sql file. Step 2 Open notepad and create a .bat file Write in notepad OSQL -SSERVERNAME...
  7. Govnor

    Find word file properties like author of document.

    Hi, I want to write a VB.NET service that checks the properties on a word file to find out who the author is. I know how to write a service. I know how to find out the properties of a file using the IO.FileInfo namespace But the only problem is I don’t know how to view the author as the...
  8. Govnor

    Find word file properties like author of document.

    Hi, I want to write a VB.NET service that checks the properties on a word file to find out who the author is. I know how to write a service. I know how to find out the properties of a file using the IO.FileInfo namespace But the only problem is I don’t know how to view the author as the...
  9. Govnor

    How to make a rich textbox editor (to compose a message) like hotmail

    Cheers BoulderBum, That was just what I was looking for. THE GOV' NOR
  10. Govnor

    How to make a rich textbox editor (to compose a message) like hotmail

    Hi, Does anyone know of a class or COM control that I can use to make a rich textbox editor (like hotmail has in for there email message box, i.e. when you are composing a message.)? Cheers THE GOV' NOR
  11. Govnor

    Calling a sub and incrementing a Integer within the sub

    Hi all, what I decide to do with dace advice is use sessions. So on the page load I wrote Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Session("WipListArr") Is Nothing Then InitializeArray()...
  12. Govnor

    Calling a sub and incrementing a Integer within the sub

    Hi, well i click a update button on a datagrid which in turn calls this updatestatus function. So you maybe right that the arraylist I declared will be instantiated again as a new one. how do i solve this ??? If I store them in the viewstate or session, how should i implement this ...
  13. Govnor

    Calling a sub and incrementing a Integer within the sub

    fixed by calling Dim WiPidArrayList As ArrayList should be Dim WiPidArrayList As New ArrayList but still cannot Lbl_Count.Text = WiPidArrayList.Count as the count always equals 0, don't know why any ideas anyone THE GOV' NOR
  14. Govnor

    Calling a sub and incrementing a Integer within the sub

    Yes, I sure did... Dim WiPidArrayList As ArrayList Dim SortArrayList As New ArrayList Private Sub updatestatus(ByVal wipid As Integer) WiPidArrayList.Add(wipid) Lbl_Count.Text = WiPidArrayList.Count Lbl_Wipidinfo.Text = String.Concat(Lbl_Wipidinfo.Text...
  15. Govnor

    Calling a sub and incrementing a Integer within the sub

    In debug mode I can see wipid = 49 THE GOV' NOR
  16. Govnor

    Calling a sub and incrementing a Integer within the sub

    I get this error, a little help!!!! Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code...
  17. Govnor

    problem with my crystal report

    May be post this on the Crystal Reports 2 Data Access forum, some guys there may be able to help you... as this is a data access issue. ;-) THE GOV' NOR
  18. Govnor

    problem with my crystal report

    Has your report already have a parameter set up within it. THE GOV' NOR
  19. Govnor

    Calling a sub and incrementing a Integer within the sub

    Hi, Another quick question on the same topic. I like the idea of ArrayList But how do I sort through the ArrayList to perform a task on each item once I have populated it the ArrayList? I know you can use the following code with an Array For i As Integer = 0 To m_WiPidArrayList.Length - 1...
  20. Govnor

    Calling a sub and incrementing a Integer within the sub

    Cheers, I will give that a try. But sounds like the right solution to me. ;-) THE GOV' NOR

Part and Inventory Search

Back
Top