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
M

Michael Clinton

@Michael Clinton
About
Posts
12
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Suggestion on searching thru jobs and resumes
    M Michael Clinton

    Currently I'm using c#, web forms and ms sql. I'm using ms sql as my search engine for searching for jobs and candidates. I ran across two issues. Recruiters need it to be simple and be able to search with regular basic boolean functions and sometimes they paste an entire job description and wonder why it takes for ever or crashes.. timeout. What products should be looking at to fix my issues? This needs to be an in-house hosted option.

    ASP.NET csharp asp-net database algorithms help

  • webforms, modal, updatepanel, repeater and linkbutton and opens another modal
    M Michael Clinton

    So have I have a modal with a updatepanel and a repeater inside it. I have an open another modal on linkbutton click, I would like to update the 2nd modal with a checkboxlist, but the linkbutton click doesn't fire for me to update the 2nd modal data.

    ASP.NET announcement

  • Collecting data to make a excel graph
    M Michael Clinton

    I have 2 date time entries that represent time in and time out. I want to graph this data representing how many people or on the clock per 15 minute intervals. Should I create a temp table that holds the qty of people that are clocked in for every 15 minute interval or what?

    Database data-structures question

  • Populating pdf on the server
    M Michael Clinton

    I have a process that populates a pdf template based on user input. Can the system handle multiple users filling out web form and populate pdf template and save the populate pdf into a different directory. I am using Itextsharp. We are using one pdf template to create the pdfs. Should I put the PDF template in the database and load it into my program as a blob? Thanks, mjc

    ASP.NET database sysadmin question

  • WebBrowser Control
    M Michael Clinton

    I am using the WebBrowser Control and am running into problems with some web sites. I had to put the control into IE 11 emulation mode for the web sites that I visit. I notice that the auto complete doesn't work when I use the WebBrowser Control, but if I hit the web site with a normal web browser the functionality works fine. Is there a option for the WebBrowser Control to allow this functionality? I am using the WebBrowser Control to log into web sites without the users knowing/sharing the password.

    ASP.NET question

  • Gridview with checkboxes
    M Michael Clinton

    I have a gridview where I have checkboxes on each row. You can select the checkboxes and then hit a download button. The code returns back a multipaged pdf with the files you checkboxed. How to do you use updateprogress to show the user that I am doing a process and to keep them from hitting download more than once. I tried with a button, but I am getting

    Sys.WebForms.PageRequestManagerParserErrorException:

    When I try a link button, the PDF is generated and downloaded, but no ajax updateprogress is visible. Thanks

    ASP.NET tutorial

  • Is there a control that displays a PDF and submits the pdf back to the server?
    M Michael Clinton

    I am looking for a PDF control that displays the PDF and adds a "submit" button, that send that entire pdf back the server. I want to save the entire pdf as a BLOB on the database. I see a bunch of viewers, but looking for the other half. Thanks, mjc

    ASP.NET database sysadmin question

  • Code or a network stack control to change the network gateway inside my app
    M Michael Clinton

    I am asked to find out if it is possible to switch the gateway inside my app that has the IE web control. I have a program that allows terminal users log into data service sites and get data back. The problem is that I need to change the gateway so that the data service comes from 2 gateway different gateways. Thanks,

    ASP.NET sysadmin data-structures help

  • VS2005 vb.net windows app textbox error
    M Michael Clinton

    I am having a problem on my first VS2005 vb.net windows app. I am pulling data from a database and populating a textbox, with multiline=true and with vertical scroll bar. When I run the app, when you move the mouse over the textbox, the contents disappear and the white background is gone too.. you move the mouse over it and sometimes the data comes back. Is this something I did or a known problem that I should update my code or IDE to fix it. Thanks mjc

    Visual Studio help csharp database visual-studio

  • asp.net 2.0 vb.net Index Server
    M Michael Clinton

    Ok, I got it to work. What I did was saved query result into a dataset and then using string functions to get my data out and then create a datatable and added each row with data from the dataset. Dim accessConnection As OleDbConnection = New OleDbConnection("Provider=MSIDXS") Dim accessCommand As New OleDbCommand(query, accessConnection) Dim newjobsDataAdapter As New OleDbDataAdapter(accessCommand) Dim myDataSet As New DataSet() Dim newjobsDataTable As New DataTable("newjobs") newjobsDataAdapter.Fill(myDataSet, "newjobs") Dim dataTableRowCount As Integer = newjobsDataTable.Rows.Count Dim myDataTable As DataTable = myDataSet.Tables(0) Dim tempdata As String Dim spc1 As Integer Dim spc2 As Integer Dim spc3 As Integer Dim spc4 As Integer myDataTable.Columns.Add(New DataColumn("ID", GetType(Integer))) myDataTable.Columns.Add(New DataColumn("JobID", GetType(Integer))) myDataTable.Columns.Add(New DataColumn("JobTitle", GetType(String))) myDataTable.Columns.Add(New DataColumn("Keywords", GetType(String))) myDataTable.Columns.Add(New DataColumn("Location", GetType(String))) myDataTable.Columns.Add(New DataColumn("Rate", GetType(String))) For i = 0 To myDataTable.Rows.Count - 1 myDataTable.Rows(i)("ID") = i + 1 tempdata = myDataTable.Rows(i)("characterization") spc1 = InStr(myDataTable.Rows(i)("characterization"), ",") spc2 = InStr(myDataTable.Rows(i)("characterization"), ". Category") myDataTable.Rows(i)("JobID") = Convert.ToInt32(Mid(tempdata, 1, spc1 - 1)) myDataTable.Rows(i)("JobTitle") = LTrim(Mid(tempdata, spc1 + 2, spc2 - 8)) spc1 = InStr(myDataTable.Rows(i)("characterization"), "Description") spc2 = InStr(spc1, myDataTable.Rows(i)("characterization"), "~.") myDataTable.Rows(i)("Keywords") = LTrim(Mid(tempdata, spc1 + 13, spc2 - spc1 - 12)) spc1 = InStr(myDataTable.Rows(i)("characterization"), "State") spc2 = InStr(spc1, myDataTable.Rows(i)("characterization"), ".") spc3 = InStr(myDataTable.Rows(i)("characterization"), "City") spc4 = InStr(spc3, myDataTable.Rows(i)("characterization"), ".") myDataTable.Rows(i)("Location")

    ASP.NET csharp asp-net database sysadmin

  • asp.net 2.0 vb.net Index Server
    M Michael Clinton

    I am working on a job posting web site and I am using the index server to be able to search thru individual jobs that get ftp up. The problem is how do I truncate the data or extract the data out of the characterization. Here is an example of the contents of my characterization. 15010, CEV Demo Chief Engineer - Space . Category: Engineering. Region: CA-Los Angeles/Orange Counties. City: El Segundo. State: CA. Rate: $60.00 - $65.00. Duration: 6 - 12 Months. Description: Technical Integrity, CEV, Spacecraft Systems~. RESPONSIBILIITES:. Responsible to the CEV Demo IPT Leader and Program I need to bind to a gridview to the first line... that would only be the job number. Then I want the rest for the next column to have the job title. After that, the description is my keywords for my next column and then a combo of State and City in one column and the final column to have the Rate. I thought I could use substrings and pathindex to get the individual data out, but that didn't work. thanks mjc

    ASP.NET csharp asp-net database sysadmin

  • Web Browser control
    M Michael Clinton

    I am using vs2003 for a vb.net windows app. I need to create a web browser app that saves password that login to a web site. Theses user accounts are in a database that I can change. The web browser app shares theses login accounts for more users. The web browser app manages current users and kick them off when more users join the wait queue. Micro share accounts. The problem I am running into is that javascript popups, like calling a javascript function that uses window.open, jump out of my app and opens in the default web browser.. and needs to be kept in my browser app. When it opens in default web browser the login authorization falsea and then requires them to login. I currently hide the login screen from the user and can't let them see it. What work arounds can I do?

    Visual Basic csharp javascript database data-structures
  • Login

  • Don't have an account? Register

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