Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

percyvimal

@percyvimal
About
Posts
60
Topics
35
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • System.IO.MemoryStream Issue , Help needed urgently
    P percyvimal

    Hello I have 2 Memory streams of 2 pdf files. Now i want to combine these 2 files into a single file ie 2 memory streams put together as single stream and print on the page using HttpContext.Current.Response.BinaryWrite(combinedMemoryStream) How to do it? Help needed urgently. Thanks and Regards

    Help in need is the help indeed

    ASP.NET help performance tutorial question

  • Dynamic Controls HELP --URGENT
    P percyvimal

    Thank you very much for the reply. Yes i have assigned both name and id attributes for the controls i have created. But not showing in the key Collections in request.form. It only shows the Items that i created as server controls.

    Help in need is the help indeed

    ASP.NET

  • Dynamic Controls HELP --URGENT
    P percyvimal

    Hello I am creating Dynamic HTML controls using javascript and filling data from ajax. When post back i cannot access the html controls like text box and combo box using request.form() and those dynamic controls. How to access dynamically created HTML Controls on Client side on Server side after the page is submited? Need help Urgently thanks and regards

    Help in need is the help indeed

    ASP.NET

  • AutoCompleteProperties with multi parameter
    P percyvimal

    Is there a way to use AutoCompleteProperties with multi parameter. I want to use same WebService function for all modules and for each module i should pass the module code so that i can filter the list which should be listed under the textbox for that particular module? Thanks in advance. Help in need is the help indeed

    ASP.NET help question

  • Response.Redirect in IFRAME
    P percyvimal

    that is a good little idea. Thanks Mr Guffa. I will try that. Regards Help in need is the help indeed

    ASP.NET help

  • Response.Redirect in IFRAME
    P percyvimal

    Hello I have a Parent page and inside that parent page i have a child page in the child page i check if a request.querystring value = not empty and if it is empty then i have to response.redirect the whole page is parent page to the start up page. if i use response.redirect it just load the start up page in the child iframe section. Need help. Help in need is the help indeed

    ASP.NET help

  • access to sql using dataadapters
    P percyvimal

    Hello i have set of tables in Access Database. I need to upload the data from access to SQL. I have to do so by considering the codes that exists in the sql and based on the primary key values i have to change details in the access database and then upload. what i like to do is get all tables in the access Database into adapters. and then update the values in the adapters ie primary key based on what i got in sql. after changing the values in adapters i need to insert those values into sql server. Need help in doing this with code example. Thanks in advance Help in need is the help indeed

    Visual Basic database sql-server sysadmin help tutorial

  • avi to wmv
    P percyvimal

    Hello i have to convert avi files to wmv files using vb.net 2005 and is there any tutorials or source code available to get me started. thanks and regards Help in need is the help indeed

    Visual Basic csharp help

  • Global variable and Sub Main()
    P percyvimal

    Thank you very much mr Dave and Cosma, with your help i am getting into .net now and really appreciate your nice explanations and very useful information. with regards Help in need is the help indeed

    Visual Basic csharp help tutorial question

  • Global variable and Sub Main()
    P percyvimal

    Thank you very much Mr Dave That is great explanation.I am still in the world of VB6 and so need to crawl to get into the world of .NET and people like you i hope will take me in the right direction. Sorry for the Numbering Error. "You actually have to turn off the "Enable Application Framework" option in My Project " This helped me a great deal for i was scratching my head why submain was not listing in the dropdown. Regarding No3: Now, you don't have to have a Module to supply a Sub Main. You can do it with a Shared member Sub of a class: Public Class Form1 _ Public Shared Sub Main() ' Same as above examples... End Sub ' the rest of your form code goes here...End Class According to your example Form1 --should be the start up form?Could you able to explain how it works.I assume my Sub Main will be triggered first where whatever i wrote as code will be executed and then formLoad event? Me.Close()= ME.END in VB6 ie does it free up the application from memory? You have suggested that using global variable is not such a good practice and i have read in some article also that it is not a OOPS concept to have global variables. So what is the best and alternative way. Do i need to create a class with get and set parameter in a class to store that values? I would like you hear from you what is the best method to be followed to keep global variables? Thanks and Regards Help in need is the help indeed

    Visual Basic csharp help tutorial question

  • pls its very urgent (Code for Dynamic dropdown side menu)
    P percyvimal

    It depends on your requirement. If you are going to create a menu which is dynamic ie you dont know how many menus and submenus the page may have and it may increase , then the way to go is database and provide a module in admin section for the Administrator of the application to add the menu in the future from application to the database. Assume if the menu is fixed ie you only going to have fixed sets of menu then you can either go for xml or create those menus directly on the page. But if you decide to decrease the load to the database then you can create a Menu.xml and make a interface to add edit delete the menus into that xml file and still able to manage a dynamic menu for the user. But i would go for Database because Relational Database is much efficient than the XML interms of reading and writing data to and from.Next you have a centralized data where as you have to make sure your xml file is updated one and if accidently deleted then you are in trouble. So consider these situation and choose a best option. In Code project there are lot of tutorials or articles available for menus and try searching it and if you cant fine i will put some nice links for you. all the best and happy programming. Help in need is the help indeed

    ASP.NET csharp asp-net database help

  • Global variable and Sub Main()
    P percyvimal

    Hello I am new to .net. I need to know the following information. 1.How to declare global variables. 2.where to declare ( in VB6 used to declare those in Modules what about 2005?) 3.How to make the application Run the Sub Main() function?( I saw in VS2005 My Project Tool and it shows only forms which are in the projects and it didnt show the module which i have added which contains a main function and i have tried to add a class and tried the same and still no luck. 5.How to end the application Frmmdiform.END? Thanks for the reply in advance Regards Help in need is the help indeed

    Visual Basic csharp help tutorial question

  • windows media encoder
    P percyvimal

    Hello Is there any tutorials available for windows media encoding ie converting avi to wmv using visual studio.net 2005 in VB. I have found SDK in Microsoft site but it runs in Visual Studio 2003 but not in 2005 when the project is converted. So I need help to get some source code that will convert a avi file to WMV. Thanks and Regards Help in need is the help indeed

    Visual Basic csharp visual-studio help

  • pls its very urgent (Code for Dynamic dropdown side menu)
    P percyvimal

    Dynamic Drop down menu from XML file or Database? Help in need is the help indeed

    ASP.NET csharp asp-net database help

  • Asp.net best webmodel?
    P percyvimal

    Thank you munklefish. Let me try your idea. With regards Help in need is the help indeed

    ASP.NET csharp asp-net design help question

  • Asp.net best webmodel?
    P percyvimal

    Thank you very much for the reply. I didnt able to understand your logic of using methods. Is it possible for you to provide a sample code to select 2 different method for 2 different querystring values? Regards Help in need is the help indeed

    ASP.NET csharp asp-net design help question

  • Asp.net best webmodel?
    P percyvimal

    Hello I need to create a Single Page based website ie user will only see Default.aspx when they click any menus. If user click a Menu item then i will pass a value to hidden form field and then submit the page and when the page reloads based on that form value i will load the body of that page. Inorder to achieve this 1. I have a MasterPage which contains the Menus footers and other general objects that is common to whole project. 2.In my project i have 2 sections one i call a.) Top Section and another i call b.) Bottom Section.I have divided those into 2 sections becuase i have included both sections in a seperate IFRAMES so that each section work independently of other,but both are related by menu and have same module based information. Page MENU <Iframe BottomSection> FOOTER Developement Language: VISUALBASIC.NET 2005/APS.NET 2.0 Required Information: I like to know the best method that can be implemented to design the structure of this website? Thanks in advance for your help With Regards Help in need is the help indeed</x-turndown>

    ASP.NET csharp asp-net design help question

  • Stored Procedure PRoblem
    P percyvimal

    those 8 tables are same structured but due to simplicity and future oriented modifications and additions i am in a position to use 8 different tables. with regards vimal Help in need is the help indeed

    Database help database tutorial announcement

  • Stored Procedure PRoblem
    P percyvimal

    Thanks Mr Abbaskaya and Mr Mike I have 8 tables in my database which have the same structure and so i planned to do a general function so that i can make those 8 modules as a single functions and can use parameters to make it work. I have tried the way you have explained above but i am getting a syntax error.Could you tell me exactly how to implement that with correct syntax so that i can check it here. Thanks a lot for your help with regards vimal Help in need is the help indeed

    Database help database tutorial announcement

  • Stored Procedure PRoblem
    P percyvimal

    Hello I planned to genralize a stored procedure where i can pass the table name field names as parameter to the storedprocedure along with the values and then use those information to add or update the table which is passed as parameter. My stored procedure look like this CREATE PROCEDURE Add_Edit_GSupportTables(@AddMode bit,@GenCode int,@GenName varchar(100),@GenTable varchar(50),@GenCodeField varchar(50),@GenNameField varchar(50)) as declare @AutoCode numeric; if @AddMode = 1 begin select @AutoCode = max(@GenCodeField) from @GenTable set @AutoCode = isnull(@AutoCode ,0) set @AutoCode = @AutoCode +1 Insert Into @GenTable values(@AutoCode,@GenName) end else begin update @GenTable set @GenNameField =@GenName where @GenCodeField = @GenCode end GO but it gives incorrect syntax near @GenTable How to do so that this stored procedure can be used as functoin to add / edit with regards vimal Help in need is the help indeed

    Database help database tutorial announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups