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
D

d_smit

@d_smit
About
Posts
23
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • sending xml file to web service
    D d_smit

    Hello All, In my application i have to save xml file data to database using web service. So please tell how xml file can be passed to web service method. xml file resides in the web application root directory so how it can be read inside web service method. Thanks in advance

    ASP.NET database xml

  • compiler error
    D d_smit

    Hello, thanks for providing solution to multiselect dropdown . I have downloaded the applications and converted it to vs 2005.After conversion the application is running properly but when i copied usercontrol and page from this application and added to another application i am getting the compilation error mentioned below: CS0115: 'ASP.webform1_aspx.GetTypeHashCode()': no suitable method found to override Line 511: Line 512: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 513: public override int GetTypeHashCode() { Line 514: return 1203564985; Line 515: } I am maintaining the same heirarchy and namespace as per original application but unable to resolved it. Please let me know the solution. Thanks in Advance!!

    ASP.NET visual-studio help

  • Gridview template column having imagebutton
    D d_smit

    hello ! I am using gridview to display records in my web application. I have defined two template column each having a asp imagebutton for delete row and update status respectively. for deleting row i am using grid rowdeleting event which is working fine but i am unable to get datakey column value on status imagebutton click. I also defined one bound column and on the basis of this boundcolumn and primary field column value i have to update status.I got stuck to this problem terribly. Anyone who knows please tell how on imagebutton click that particular row can be access.I want that particular row's primary key field(or datakey value as primary key column is assigned to this) and bound column value please send me the code or solution ASAP as its urgent. Any help will be highly appreaciated. Thanks in advance!!

    ASP.NET help css announcement

  • Regex required
    D d_smit

    Hello, I got stuck to one problem and need your help. In my asp.net application i am using RegEx (regular expresiion) to get all the emailids enclosed in a particular html tag. For ex : see the code below line1 <to> test@test.com, user1@user.com </to> -----line1 This statement could repeat in my textbox multiple times with same or different mailids enclosed. So finally regex should return two emailids w.r.t. to above example line1. now line1 generates different html with different mail providers like yahoo, rediffmail gmail. for ex for outlook generated html, i have written Dim S As New Regex("<to>(.*)</to>", RegexOptions.Multiline Or RegexOptions.IgnoreCase Or RegexOptions.Compiled) this returns the expected result but if i press enter before closing to tag then ids get converted to hyperlink and href get inserted into html code. then i pass this statement to regex i dont get expected result. Let me tell you that i pass html code generated as a string to regex and expecting that it should return all emailids enclosed in the code removing duplications and irrespective of other symbols or tags. so my query is how i could retrieve the emailid s from any generated htmls. Please anyone who knows provide me the code. thanks in advance.

    Visual Basic help csharp html asp-net database

  • deploying application.
    D d_smit

    To be very specific, i have to check the disk space. Thanks.

    Visual Basic csharp database sysadmin performance

  • deploying application.
    D d_smit

    Hello, My query is related to application deployement. I have created one application in vb.net and now want to deployment. Suppose it requires 5GB of memory then in my setup project how can i check physical memory required using launch condition. Anyone who does know, please tell. Thanks in advance.

    Visual Basic csharp database sysadmin performance

  • detecting media player
    D d_smit

    Hello All, In my vb.net application i am playing audio files using window media player. Sometimes application fails , if window media player is not installed on the user's machine. So, how it can be detect whether media plyer is available or not befor plying. Does any API exists using which we can retrieve data from system registry. Anyone who knows the answer, Please tell Any help will be highly appreciated. Thanks in advance.

    .NET (Core and Framework) csharp windows-admin json help

  • dtpicker problem
    D d_smit

    Hello, I am facing the problem using dtpicker. Im my vb.net application on selecting dtate from dtpicker i am displaying records from database in agrid By default i am displaying the today's date in the format 08/09/2007. When i execute my application and changes the date using keyboard for instacnce pressing 06 for date and 08 for month it accepts date without moving cursor from the current position and i get result. But if i press 6 (instead 06) it doesn't accept. I tried to trace tthis value in dtpickers keyup, keydown , text changed and keypress events but not getting the current value unless and until i move cursor from it. I am terribly stuck to this problem. Please help me. Anyone who knows how it read current text of dtpicker please let me know. any help will be highly appreciated. Thanks a lot in advance.

    .NET (Core and Framework) help csharp database debugging

  • change child form control property at runtime using vb.net 2003
    D d_smit

    I have to change multiple child forms label property with a single call. is it possible. I am calling the procedure in MDI load event. In the single procedure, I have created instances of multiple child forms. Am i doing nothing wrong. the same code executes in vb.net 2005 , so how it can be done in vb.net 2003

    Visual Basic csharp help

  • change child form control property at runtime using vb.net 2003
    D d_smit

    Hello All, In my application i have to change child form text and label's visible property to false based on some condition like: In my application MDI form is a startup screen and written the following code if bvar = false then dim frm as new frmchild frm.label1.visible=false frm.text="Hello" end if Presently i have written it in module because it has to be included in either a class or module as per requirement. But, whenever i execute my application, the label still remains visible and also form text remains the same. I am using dot net 2003. anyone who knows, Please help at the earliest how properties can be changed at runtime. Please provide some code if possible. Thanks .

    Visual Basic csharp help

  • Make child form label invisible
    D d_smit

    Hello, I am facing the problem in accessing the child form control property. In my application depend upon certain condition , i have to hide some controls of some child forms. I have created a module wherein writen a Public procedure to hide one of the child form's control and call the procedure in MDI forms load event. But, Whenver i am executing the application , code doen't take any effect and control still remain s visible. Here is the code: Module Mod1 Public sub HideControl(byval var as boolean) if var=false then Dim frmName As frmSearch If frmName Is Nothing Then frmName = New frmSearch frmName.label1.Visible = false End If endif end sub end module This is first way i tried. Second way : I have defined a property for accessing the form instance and with this instance accessing the control as below: ''' global variables Private Shared SearchInstance As frmSearch Private Shared bSearchInit As Boolean Public Shared Property DefInstance() As frmSearch Get If SearchInstance Is Nothing OrElse SearchInstance.IsDisposed Then bSearchInit = True SearchInstance = New frmSearch bSearchInit = False End If DefInstance = SearchInstance End Get Set(ByVal Value As frmSearch) SearchInstance = Value End Set End Property Using this property accessing cotrol and setting its property in module as: frmSearch.DefInstance.label1.Visible = false None of the these codes seems to be working. when i open that child form i still found that label visible. Please anyone who knows the answer let me know, how to do it. Please Give some code , its urgent as i am unable to proceed further. Any help will be highly appreciated. Thanks

    Visual Basic help tutorial

  • BizTalk
    D d_smit

    Hi All, Being a dot net beginner, i would like to know about biztalk. What is biztalk? whats it role and how it can be used? Please explain with an example. Thanks.

    Visual Basic question tutorial learning

  • crystal report
    D d_smit

    Hello, In my vb.net application,i created one report using crystal report. In report header section i have placed four textboxes in which data must appeared from calling form's text boxes.But its not showing up the report header section.Againg how could i connect my report to database particularly a DSN at run time. Please give some code. Thanks.

    Visual Basic csharp database

  • File tagging format
    D d_smit

    Hello, I have created a project in vb.net. In which i am downloading a wave file from a device. To listen this audio file i need to tag it available codec format. and for this I am using G726 . But even after the tagging iam unable to hear it with window player and real plater as tagging might not be proper. So, i will be very greatful if someone could tell me the exact format of tagging or provide some sample code at the earliest. Any help would be highly appreciated.Thank you.

    Visual Basic csharp help

  • [Message Deleted]
    D d_smit

    [Message Deleted]

    Visual Basic

  • how to handle this socket exception
    D d_smit

    hi, I have created two applications using vb.net. One acts as server and other as client. To have communication between these two, in server application i m using winsock control and in client application i am using socket class. when i sends data from client application, server connection dies while reading data second time and raises the exception and flashes error "An existing connection was forcibly closed by the remote host". Please tell at the earliest how this error can be resolved. how this connection can be kept alive. Thanks.

    Visual Basic csharp sysadmin help tutorial

  • how to add state property
    D d_smit

    hi, i am developing a client-server application in vb.net. I am using a socket class in it. I declared one object in my client application as: dim clientSck as TcpClient clientSck.connect(ipaddress,portno) here if server application is not running it raised the exception, so how this can be handled, how can i include state property to check state connected or not. Please tell the solution.

    Visual Basic csharp sysadmin tutorial question

  • Help me ! Urgent.
    D d_smit

    how it can be done, from client application i am sending data server. both are listening the same port which is required so that they will be able communication. so how can i keep the port open at both end to listen. how iis can be shut down. Please elaborate. thanks.

    Visual Basic sysadmin help csharp

  • Help me ! Urgent.
    D d_smit

    hi, i have developed a client-server application in vb.net. I am using a socket class in this application. I have written the following code: Dim wsTCP As New TcpClient Dim nwStream As NetworkStream Dim byt_Buffer() As Byte Dim async_CallBack As AsyncCallback Dim ipLocal As System.Net.IPAddress = IPAddress.Parse("MyIpaddress") Dim wsTcpLst As New TcpListener(ipLocal, portno) wsTcpLst.Start() If wsTcpLst.Pending = True Then wsTCP = wsTcpLst.AcceptTcpClient wsTCP.Connect(ipaddress, portno) nwStream = wsTCP.GetStream byt_Buffer = System.Text.ASCIIEncoding.ASCII.GetBytes("hello") nwStream.BeginWrite(byt_Buffer, 0, byt_Buffer.Length, Nothing, Nothing) wsTCP .close endif I am getting the error: Only one usage of each socket address (protocol/network address/port)is normally permitted at line wstcplst.start. Please help me out at the earliest how this can be resolved. Thanks in advance.

    Visual Basic sysadmin help csharp

  • how to resolve it
    D d_smit

    hi, i get the following error: The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) How it can be resolved. Thanks, SD

    Visual Basic regex help tutorial
  • Login

  • Don't have an account? Register

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