Search:

Type: Posts; User: JemimaChadwick

Page 1 of 7 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    12
    Views
    910

    Re: Code-behind question

    Sorry, what I'd mentioned above was the C# equivalent.. just browsed to get the VB.NET code... here's how it should be, I guess

    Protected WithEvents Label1 As System.Web.UI.WebControls.Label
    ...
  2. Replies
    12
    Views
    910

    Re: Code-behind question

    Well, so add it to the class ... that should work.

    Not sure how this got missed.. usually when we create server controls on the page and come to the code behind, the controls would be declared...
  3. Replies
    12
    Views
    910

    Re: Code-behind question

    Do you have this line generated within the class?

    protected System.Web.UI.WebControls.Label Label1;
  4. Replies
    4
    Views
    715

    Re: Datagrid Row ID

    You can iterate the datagrid using the foreach DataGridItem in Datagrid.items and use the findcontrol("controlname"), I guess

    thanks
    Jemima.
  5. Replies
    4
    Views
    715

    Re: Datagrid Row ID

    What do you want to do with the label id?

    You can handle the item_databound event of the datagrid.. this gets fired during every data row that's bound to the grid..

    - Jemima.
  6. Replies
    12
    Views
    910

    Re: Code-behind question

    Is the procedure's access qualifier 'public'? I not much of a VB.NET programmer... just worked with C#. But I guess it must be similar

    In some cases, we need to use the #import statement on the...
  7. Re: Powerpoint Generation from WebForm

    Thanks VeryJonny. You are right. Both the pointers you have given are valid in this context. I had given write permission to the ASPNET account to the folder.

    However, I just noticed the issue was...
  8. Powerpoint Generation from WebForm (Resolved)

    Hi,
    I have built a class library in C# that will take a dataset and generate a powerpoint presentation and save the file in a predefined folder. I have tested this component with a windows...
  9. Replies
    5
    Views
    937

    Re: disable TextBox

    Oh!! When I tried out, I found all the controls on TabPage1 got disabled.

    Well.. let me know if that doesn't happen.. I'll look out if there's an alternate solution.

    Jemima.
  10. Replies
    5
    Views
    937

    Re: disable TextBox

    Try this:

    tabControl1.TabPages[0].Enabled = false;

    Although, the IDE does not give the .Enabled property option, this works.

    Thanks
    Jemima.
  11. Replies
    0
    Views
    717

    Regsvcs and COM+

    Today we noticed a situation while trying to register an assembly in COM+ 2 ways.

    By accident one guy from our team used the following way, using network share:
    >regsvcs...
  12. Replies
    6
    Views
    811

    Re: Data Persistence and Communication

    Oh Good.. I should try this out when I find time.. and I'll get back to you if I had doubts.

    As for MSMQ option, it best suited our requirement cos the system itself was functioning in a first...
  13. Replies
    6
    Views
    811

    Re: Data Persistence and Communication

    .NET Remoting is apt for your requirement if we want to trigger off clients from a server app. In our case, in addition to this, we had to persist data, in the form of object instances, in memory....
  14. Replies
    6
    Views
    811

    Re: Data Persistence and Communication

    Although the project got into a completely different approach to keep things simple, some of the options we finally laid down were:
    1. Using MSMQ for persistence and triggering
    2. DataBase storage...
  15. Data Persistence and Remote execution

    I'd want to know the possible implementation options .NET provides for the following. The options that I have identified are also given 'neath each requirement.

    1. Client Server communication
    a)...
  16. Replies
    6
    Views
    811

    Data Persistence and Communication

    Hi,
    Here's a system for which I am in the process of evaluating the architecture design options in .NET

    Server Application
    1. Communicate through a socket connection to receive expected data...
  17. Replies
    2
    Views
    510

    Re: ListBox Posting Problem

    Are you getting some error now?

    Otherwise it could be no rows matched the selection. To solve this, try trimming the list box's selected item value.

    Thanks,
    Jemima.
  18. Replies
    1
    Views
    505

    Re: INSERT in commandtext

    Try changing the query to

    INSERT INTO table1(C_name, c_mail) VALUES('" & TextBox1.Text & "','" & TextBox2.Text & "'")

    Jemima.
  19. Replies
    9
    Views
    1,128

    Re: Losing Session (annoying me!)

    As plenderj pointed before, did you check on the timeout values (both in IIS and the web.config)?

    As for multiple web servers, the load balancers could be configured to use Sticky Sessions...
    ...
  20. Replies
    2
    Views
    580

    Re: DataGrid Delete Column (Resolved)

    Okay.. we managed to do a workaround for this..

    The problem was in setting the value to NULL in the recordset explicitly although the column was nullable.
    We set the translation property of this...
  21. Replies
    1
    Views
    1,569

    .SNK FileNotFoundException

    Hi,
    Whenever we referenced "component X" from our application we got the error:
    "System.IO.FileNotFoundException: File or assembly
    name <assembly name>, or one of its dependencies, was not...
  22. Replies
    2
    Views
    580

    DataGrid Delete Column (Resolved)

    Hi,
    I get this error "Datatype mismatch..." on my grid's error event when I select a date column on the grid and hit the "Delete" key. Also the focus remains in the same cell and hence there is a...
  23. Replies
    1
    Views
    347

    Frame shaped like a TabStrip?

    Hi,
    We have the requirement to embed a "frame" control, but it needs to look like a tabstrip. I'm not sure if a control existed like that cos we have the analysis document that has a screnn shot of...
  24. Replies
    4
    Views
    670

    Thanks for the posts.. Shunt... yes I've...

    Thanks for the posts..

    Shunt... yes I've suggested the web servers and applications servers be network load balanced in the proposal.. but never been part of or witnessed setting up such...
  25. Replies
    4
    Views
    670

    Architecture Evaluation

    Am in the process of proposing a .NET architecture for a client who wants to rewrite his website from ASP to .NET

    Proposed architecture:
    ASPX Code behind --> Web services --> Business Component...
  26. Replies
    13
    Views
    663

    It would have been a clean sweep choice if we...

    It would have been a clean sweep choice if we could have cached the images. But the barcode images can't be cached as they'll be different order numbers each time.

    Also we're having this ASP.NET...
  27. Replies
    13
    Views
    663

    That's very sweet of you to offer, Acidic; but we...

    That's very sweet of you to offer, Acidic; but we do have code in C# (downloaded from the net) that would convert text to image and all.. and like I said the issue was in streaming the image back to...
  28. Replies
    13
    Views
    663

    The site is in ASP.NET and C#. Can't use PHP -...

    The site is in ASP.NET and C#. Can't use PHP - its not within our standards and I don't know PHP too.

    Thanks anyways, Jop! We had thought of the option to convert the barcode to an image and...
  29. Replies
    13
    Views
    663

    Installing the fonts on the destination machines...

    Installing the fonts on the destination machines was the initial idea. But going forward we had to think of an alternative when a new box got added.

    I am still beating around with the hopes of...
  30. Replies
    13
    Views
    663

    No I didn't quite understand. What command should...

    No I didn't quite understand. What command should I give? I tried "FontName" but how will I know if the font existed?

    Jemima.
  31. Replies
    13
    Views
    663

    Thanks for the quick response Acidic! The site...

    Thanks for the quick response Acidic!

    The site is for within the intranet and we also have the liberty of assuming the browser to be IE (We're blessed!)

    I can't expect the security settings to...
  32. Replies
    13
    Views
    663

    Barcode Font problem

    Hi,
    I have a requirement to display and print barcodes. I am using the Code39-digits font to display the number in barcode format. I want my web application to detect if the font is installed in...
  33. Replies
    1
    Views
    416

    Error with Arrays

    Hi,
    I am using an array of recordsets. This is being passed byRef from VB Component 1 - VB Component 2 - C# Component and back. While VB Component 1 is on Server1, VB Component 2 and C# component...
  34. Replies
    2
    Views
    402

    Nothing much. I've been trying out some code at...

    Nothing much. I've been trying out some code at random.. and have only found the document.content.find method to locate the text I wanna search.

    There seems to be no straight forward methods that...
  35. Replies
    2
    Views
    402

    Reading Word using VB

    Hi,
    I am in need of reading a Word Document and fetch the contents under a given heading. Assuming my Word Document to contain 3 headings - Heading 1, Heading 2 and Heading 3; I now want to get the...
  36. thanks hellswraith for the reply.. i'll luk into...

    thanks hellswraith for the reply.. i'll luk into this one ..

    Jemima.
  37. DataGrid - Conditional display based on Column value

    I am binding a Dataset to a DataGrid. Based on a boolean column value on the dataTable, the particular row on the DataGrid should be highlighted with a different color. How can I achieve this?
    ...
  38. Replies
    0
    Views
    387

    Application Center

    I need to develop a site that would wrap the AppCenter 2000 functionality. Does someone have help on the interfacing code?

    Thanks,
    Jemima.
  39. Replies
    0
    Views
    432

    XML-XSLT: Tree Structure

    Hi.. Please let me have some sample code on writing xsl with scripts to display XML in tree structure..

    Thanks,
    Jemima.
  40. Replies
    10
    Views
    587

    hey.. i thght u won't be back for long.. i...

    hey.. i thght u won't be back for long.. i couldn't take a chance and wait.. so i went at it myself, and I'm thru! :)

    thanks, Saxon.. i'll deliver my design for today and have a luk into your...
Results 1 to 40 of 277
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width