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
V

VK Cadec

@VK Cadec
About
Posts
90
Topics
45
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Session timeout in IIS or web.config - precedence
    V VK Cadec

    Hi, I would like to know which would take precedence? If the timeout is set at 20 minutes in IIS and 30 minutes in web.config - at time would the application timeout? Thanks.

    .NET (Core and Framework) windows-admin question

  • Datatypes conversion [modified]
    V VK Cadec

    Hi, I have this formula - Double i_decel_rate = ((Convert.ToInt32(textbox1.Text) * 10000) / Convert.ToInt32(textbox2.Text)); But for some reason the double doesn't display as double - like a value 7.98 is shown as 7 - it is not showing the decimals - but does display the integer value. I am using a text box to display this value - is there a way in webforms to print a value? Like the windows forms has messagebox.show()? is anything off with the syntax? thanks.

    modified on Monday, December 10, 2007 8:41:47 AM

    C# winforms question

  • XML file format
    V VK Cadec

    Hi, I am creating an in-memory xml file using XMLDOM. Does this xml file need to be formatted with CRLFs so that each node is on a new line or does the file as a single line with all the nodes make a difference? The file has been formatted properly, with begin and end tags but the fact it is saved as one line make a difference? I feel that it should not make a difference as long as all the tags are set up properly. For example: With breaks:

    /address> Without breaks

    /address> Many thanks.

    XML / XSL xml performance tutorial question

  • schedule a job
    V VK Cadec

    this may not be the best way but a thought write an app - which would just have this one command of stored proc execution. Then schedule this app using windows scheduler.

    Database database question career

  • Windows Forms GUI App to Windows App
    V VK Cadec

    I need to then schedule this out on a windows scheduler to automate this whole process. I cannot put this windows gui app in scheduler since it would require human interaction to enter those three input variables. you are right about the assumptions. Thanks - will try what you mentioned.

    C# winforms help question discussion

  • Windows Forms GUI App to Windows App
    V VK Cadec

    Hi, I have a windows forms GUI app which I would like to convert to run sliently. The forms app has three input variables, which I have now put in a .config file. Now, within the main program, I would like to call a module - it keeps coming back with error message. within main - module - processXML(_source); module definition: public void processXML(string _source) error: Error 1 An object reference is required for the nonstatic field, method, or property 'convertXML.onLoad.processXML(string)' Any thoughts? Many thanks.

    C# winforms help question discussion

  • Windows app with parameters
    V VK Cadec

    Hi, I have a stand alone windows application, which requires 3 input parameters to run program. I want this app automated. How can we do this, so that the 3 input parameters are "set" once, the first time they run the app, and from then on, it is automated to use those 3 parameters always to run application - in other words automated. Thanks so much for your time.

    Windows Forms

  • convert windows application to run using command line
    V VK Cadec

    I want to convert my app to run from command line. Then would be probably use the scheduler to set when to run this app. It has three input parameters which the user can set the first time he runs the app., then want to put this app into scheduler? Would this plan work? Thanks.

    Windows Forms csharp asp-net question

  • convert windows application to run using command line
    V VK Cadec

    so that it is automated. I am running an application which requests 3 parameters. Want to conver this to run automatically. I cannot set it up in the "scheduler" since it has 3 input parameters that needs to be considered. I am using VS2005/ASP.NET2.0 - is there a way to convert this windows application into an automatic service? Thanks so much for your time.

    Windows Forms csharp asp-net question

  • Total string length
    V VK Cadec

    Hi, I am trying to set the length of a field to a pre-defined certain value. For this reason I am padding right incase it is not the required lenght. for example String1 = "Trailer1" String2 = "Tra" String1.ToString.PadRight(6) = "Traile" - should get me this value String2.ToString.PadRight(6) = "Tra " - should get me this value. Is it correct to use padright to limit the length of string? Thanks so much for your time.

    ASP.NET tutorial question

  • Double quote variables
    V VK Cadec

    Used Chr(34) which seemed to work as well. Thanks for all the help.

    ASP.NET

  • Double quote variables
    V VK Cadec

    Hi, Instead of a R,D want to change the format to "R", "D". I have tried embedding some formatting like string = """ & "R" & """ & "," & _ """ & "D" & """ Thanks for your time.

    ASP.NET

  • Regular Expression
    V VK Cadec

    It is comma delimited csv file that is being read. To change the comma to a tilda(~) delimited file, would changing in those two places a comma occurs to tilda work? Thanks.

    ASP.NET regex question

  • Regular Expression
    V VK Cadec

    Hi, Does anyone know what this following regular expression would interpret as? Regex re=new Regex("((?[^\",\\r\\n]*)|\"(?([^\"]|\"\")*)\")(,|(?\\r\\n|\\n|$))"); Many thanks for your time.

    ASP.NET regex question

  • TOP 1 in select statement with different results.
    V VK Cadec

    Here you go. -------------- select top 1 @lastdrive = t1.datetimestamp from #e t1 inner join #r r1 on r1.routestart <= t1.datetimestamp and r1.routeend >= t1.datetimestamp where t1.eventnum = 1108 and t1.datetimestamp >= @stopstart and t1.datetimestamp <= @stopend and r1.routedatekey = @routedatekey and t1.driverkey = r1.driverkey and r1.driverkey = @driverkey order by t1.datetimestamp desc -------------- This is run within a cursor. Also - does it make a difference if we used something like -- select @lastdrive = max (t1.datetimestamp) -- instead? Thanks. Vani

    Database database debugging question

  • TOP 1 in select statement with different results.
    V VK Cadec

    Yes.

    Database database debugging question

  • TOP 1 in select statement with different results.
    V VK Cadec

    Hi, Are there any issues using TOP clause in temp tables in stored procedure? We are experiencing some difficulties for which we are unable to debug. We are receiving two sets of different results, for same input parameters. When we run stored proc the first time versus when it is run 5 minutes later, the results are not consistent. We are assuming using the TOP 1 clause may have some issues. Thanks for your time.

    Database database debugging question

  • Resource file question
    V VK Cadec

    Hi, We want to use the resource with the ability to be able to over-write the resource file? Based on maybe an Hierarchy model, set a default resource file but something specified in the Hierarchy should be able to over-write this file to new settings. We do not want to store this information in the database, creating different languages translations for the data we want to use, and want to take advantage of this .Net framework feature. Thanks for your time.

    ASP.NET question csharp database dotnet learning

  • Scheduled Task
    V VK Cadec

    Hi - Using the windows feature of "Schedule Task", can we delete some files in a directory? Or do we need to write a program to do this? Thanks.

    Web Development question

  • Table permissions
    V VK Cadec

    In my stored proc, changed a DML "truncate" to use "delete" - it is now working.

    Database database question
  • Login

  • Don't have an account? Register

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