Search:

Type: Posts; User: nasar

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    Bonnie West, Thank you so much... Your code worked fine dear..
  2. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    @stum, I tried ur method and it worked!!! Thanks alot dear....

    @Bonnie West , wanna try ur method too..
  3. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    Is there any other way to do this?

    the error occurs when i'm trying to kill the one i'm executing

    And, these two files are different files in two different locations
  4. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    :) that's true. But in that case how could this works fine in IDE without any errors. It works correctly ; the Reports folder is copied along with the exe and the version is updated in the database.
  5. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    yep.
  6. Replies
    12
    Views
    2,948

    Re: Auto Updater Error

    Error is with the line Kill APPFullName.

    It copies the updated file from Drop Box folder and replaces the old one. I'm using FileSystemObject for this purpose.
  7. Replies
    12
    Views
    2,948

    [RESOLVED] Auto Updater Error

    Hi All,
    I'm trying to add auto updater to my project. My idea is something like this: While executing, the first thing that the exe checks is, is there any update available in Drop Box. If there...
  8. Replies
    10
    Views
    1,243

    Re: Issue with vb Control declaration

    In that case it will be my mistake. Now I realize I've a lot more to know about vb6.

    Thank you so much for the help..
  9. Replies
    10
    Views
    1,243

    Re: Issue with vb Control declaration

    I figured it out..
    @LaVolpe , you were right. The problem was with a menu caption with an apostrophe. I removed it and it worked!!!

    @DataMiser ,@stum , what i meant by properties is; when we type...
  10. Replies
    10
    Views
    1,243

    Re: Issue with vb Control declaration

    Yes, I tried stepping through it. And, it gives me an error like this:
    "Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another"

    When I'm stepping it...
  11. Replies
    10
    Views
    1,243

    [RESOLVED] Issue with vb Control declaration

    Hi Everyone..

    I've an issue with my control declaration.

    Actually, this control variable is used to check for menus in MDI and assign accessability to those depending upon the user...
  12. Re: Help Needed - Hijri to Gregorian Date convertion

    Thanks alot guys...

    It was my mistake, I passed the arguments in DD/MM/YYYY format. I should have passed it in MM/DD/YYYY format. When I pass it in this format, the answer is correct.
  13. [RESOLVED] Help Needed - Hijri to Gregorian Date convertion

    I need help to convert Hijri Date to Gregorian. That is if i give a Date like "5/28/1435" , it should return its corresponding Gregorian date as "29 March 2014".

    I tried the following code, but it...
  14. Replies
    9
    Views
    9,408

    Re: Arabic Fonts in Textbox

    None of these tricks worked for me Guys..

    I found an alternative and it works fine for me.
    I used a normal TextBox , set the font to an Arabic font and in the form load i changed its...
  15. Replies
    9
    Views
    9,408

    Re: Arabic Fonts in Textbox

    I tried it .. but its not working for me. I don't know whats wrong, may be I don't know how to set it..

    I tried EditControls too. Should i register it? if i register, will that show in Reference?
  16. Replies
    9
    Views
    9,408

    Re: Arabic Fonts in Textbox

    RichTextBox???? But How? It will show in Arabic?
  17. Replies
    9
    Views
    9,408

    Re: Arabic Fonts in Textbox

    Thanks Bonnie. I tried UniSuiteFree VB6 Unicode ActiveX Controls. but still the text is showing in english only. is there any properties to set?
  18. Replies
    9
    Views
    9,408

    [RESOLVED] Arabic Fonts in Textbox

    Hi All,
    How can i set arabic fonts to a textbox. I tried to set an arabic font to the textbox from properties. But, when I run my project and type something in that textbox it shows in...
  19. Re: Need Help to Send Email from a VB application

    Thanks alot Dear... I got it.... Thank u... :)
  20. [RESOLVED] Need Help to Send Email from a VB application

    Hi All!!!

    I need to send email from my application. I tried the following code, but it didn't work. Please help me..



    Private WithEvents SendCodes As vbSendMail.clsSendMail
    Private Sub...
  21. Replies
    4
    Views
    1,190

    Re: help to load .pdf files

    Thanks for the reply again... I got it Bonnie....

    I tried AcroPDF and it worked fine.
  22. Replies
    4
    Views
    1,190

    Re: help to load .pdf files

    Thanks for the reply Bonnie.


    Below is the code which i'm using to load image files. its working fine. but when i try to load a pdf file it
    shows an error at line - Set PIC =...
  23. Replies
    4
    Views
    1,190

    [RESOLVED] help to load .pdf files

    Hi All,

    I want to upload Employee's documents to a database. I'm using Image control for this. When I try to upload a pdf file, it shows me an error like this: "invalid Picture". I need...
  24. Replies
    2
    Views
    837

    Re: Help - ToolBar Buttons

    Thanks Dear.. I got it. I tried the following code


    For Each Ctrl In mdiMAIN.Controls
    If Ctrl.Name = "Toolbar1" Then
    For I = 1 To mdiMAIN.Toolbar1.Buttons.Count
    ...
  25. Replies
    2
    Views
    837

    [RESOLVED] Help - ToolBar Buttons

    Hi All,

    I have a toolbar in my MDI form with buttons. This is used as Quick Access Buttons for the menu items. Now I need to set Access Permissions to these buttons. I have already done...
  26. Re: How to Copy a file from Client System to Server System

    Yes, I'm talking about two systems on a local network.
    what you mean by 'the drive is shared'? The destination drive should be shared?
  27. [RESOLVED] How to Copy a file from Client System to Server System

    Hi All,

    I want to copy image files from client to server. Will this be possible by using FSO? If anyone here knows about this, please help me
  28. Re: how to store and retrieve an image to an sql image field

    Thanks for the reply dee-u.
    But i've a question. in that eg u used OLE Data as datatype to store the image. In SQL what Datatype should i use for this. And, if i use image or varbinary(MAX)...
  29. how to store and retrieve an image to an sql image field

    Hi All,

    I want to store an image to SQL Server 2005. I don't wan't to store the image path, i wanna store the image as it is. If anybody has an idead please share it with me.
  30. Re: Type mismatch error - Please help me to solve this

    Hey Bonnie... it worked!!!! Thanks alot for your Support
  31. Re: Type mismatch error - Please help me to solve this

    i'm using v6.0 of Microsoft Windows Common Controls. when i try MSComctlLib. it doesn't show Toolbar option. Instead i get .ToolbarStyleConstants and .ToolbarTextAlignConstants.
  32. Re: Type mismatch error - Please help me to solve this

    Bonnie, i have the same set of code in another project, there its working fine. When i try to run this in a new project its showing me an error. The error is with the ToolBar declaration, ie, in the...
  33. Re: Type mismatch error - Please help me to solve this

    Bonnie, but for me it is showing an error.. let me try this..
  34. Re: Type mismatch error - Please help me to solve this

    thanks alot Max... i'l try this. tbrMenu is a toolbar not an array. It has 7 buttons in it
  35. Re: Type mismatch error - Please help me to solve this

    i tried, but its not working.. still the same error
  36. [RESOLVED] Type mismatch error - Please help me to solve this

    i have a Tool Bar with 6 buttons in my form. Also i have a function to set the visibility of the buttons in the toolbar.

    When i click on the button, it is showing me a runtime error '13' - Type...
  37. Re: how to add an existing old form to a new project?

    i got the answer guys... Sorry to disturb you all..

    i got the answer from Tools---->Options----->Environment(tab)

    i checked the forms under 'Show template for'
  38. [RESOLVED] how to add an existing old form to a new project?

    Hi all,

    i have a problem in adding an existing form to a new project. I tried the following method: right click on the project from the Project Explorer window, then select Add--> Form....
  39. Replies
    14
    Views
    1,998

    Re: question about package & deployment

    yes... done!!!
  40. Replies
    14
    Views
    1,998

    Re: question about package & deployment

    I got the issue solved. I didn include the config file earlier. Now i made a setup with the config file included, and it worked fine.

    Thank you soooo much... :)
Results 1 to 40 of 74
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width